国产精品99久久久久久人,欧美无遮挡18禁动态
點(diǎn)擊:
$(function(){
var url = window.location.href;
var p_id = url.substring(url.lastIndexOf("/")+1,url.lastIndexOf(".html")); //獲取文章ID
//統(tǒng)計(jì)點(diǎn)擊
$.ajax({
url:"count.php",
type:"post",
data:{"p_id":p_id},
success:function(rel){
$(".click span").text(rel)
}
});
});