我正在按照本教程创建我自己的带有计数器的社交分享按钮: 社交分享教程 而且我无法弄清楚为什么社交分享计数不会通过。
这是一个 HubSpot 网站,页面在这里
我还设置了一个小提琴 来显示我正在使用的代码。
任何见解将不胜感激!
这是在 js 中调用的 php 文件。
js:
function get_social_counts() {
var thisUrl = window.location.protocol + "//" + window.location.host + window.location.pathname;
$.ajax({
type: "GET",
url: 'http://cdn2.hubspot.net/hubfs/169677/social_sharing/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);
}
});
}
$(document).ready(function(){
get_social_counts();
});
谢谢