我想处理用户对 Like 按钮的点击。我将生成的代码从Like 按钮文档页面复制到另一个 页面,但是每次单击 Like 按钮时,什么都没有发生。
我已阅读与此问题相关的所有问题,但没有任何效果。我知道这个问题已经被问过很多次了,但是这个问题让我发疯了。
我正在使用火狐。
这是我的完整 HTML:
<!doctype html>
<html xmlns:fb="http://ogp.me/ns/fb#">
<head>
<meta charset="utf-8">
<title>Facebook Like Button</title>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function () {
FB.init({
appId: 'MY_APP_ID', // App ID
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true // parse XFBML
});
FB.Event.subscribe('edge.create', function () {
alert('Like button is clicked');
});
};
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=MY_APP_ID";
fjs.parentNode.insertBefore(js, fjs);
} (document, 'script', 'facebook-jssdk'));
</script>
<fb:like href="http://www.bluelink.ws/" send="true" layout="button_count" width="450" show_faces="true"></fb:like>
</body>
</html>