我只是想在测试页面上测试一些类似的功能并且得到意外的行为。当我单击“赞”按钮时,对话框(您可以在其中添加文本并张贴到墙上的对话框)会弹出大约半秒钟,然后自行关闭。点赞按钮本身会变成一个链接,上面写着“确认”。我真的在这里有骨气,不知道可能出了什么问题。我正在使用 FBML。这是我的测试页面的完整代码:
<!DOCTYPE html>
<html>
<head>
<title>Facebook Like Test</title>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function () {
FB.init({
appId: 'myid',
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true // parse XFBML
});
};
// Load the SDK Asynchronously
(function (d) {
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) { return; }
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
} (document));
</script>
<h1>Facebook Like Testing</h1>
<div>
<fb:like href = "http://www.example.com?id=1"></fb:like>
</div>
<div>
<fb:like href = "http://www.example.com?id=2"></fb:like>
</div>
<div>
<fb:like href = "http://www.example.com?id=3"></fb:like>
</div>
<div>
<fb:like href = "http://www.example.com?id=4"></fb:like>
</div>
</body>
</html>
我只是附加了一个任意的查询字符串以使 href 唯一。这里可能出了什么问题?