久久精品中文字幕大胸,久久夜色精品国产噜噜噜亚洲av
點擊:
$(function(){
var url = window.location.href;
var p_id = url.substring(url.lastIndexOf("/")+1,url.lastIndexOf(".html")); //獲取文章ID
//統(tǒng)計點擊
$.ajax({
url:"count.php",
type:"post",
data:{"p_id":p_id},
success:function(rel){
$(".click span").text(rel)
}
});
});