我正在按照教程实施社交分享计数按钮,例如this post中的用户。我已经为get_social_counts.php发送了正确的http请求,但它仍无效。
按钮正确加载,我可以共享页面,但不显示计数。我使用了与教程中完全相同的HTML。它也不能在远程服务器上运行。
这是JavaScript函数:
function get_social_counts() {
var thisUrl = window.location.protocol + "//" + window.location.host + window.location.pathname;
$.ajax({
type: "GET",
url: 'http://localhost:1234/site/php/get_social_counts.php?thisurl='+thisUrl,
dataType: "json",
success: function (data){
$('a.post-share.twitter span').html(data.twitter);
$('a.post-share.facebook span').html(data.facebook);
$('a.post-share.gplus span').html(data.gplus);
$('a.post-share.stumble span').html(data.stumble);
}
});
}