我正在尝试使用 jQuery 在我的博客中显示 facebook 的共享计数,但它不起作用。我的脚本有什么问题?
<script>
$(document).ready(function() {
url = "http://www.yahoo.com/";
$.getJSON("https://api.facebook.com/method/links.getStats?urls="+url+"&format=json",
function(data) {
$('#fb-share').append(data.share_count);
});
})
</script>
<div id="fb-share"></div>