3
我試圖實現Like按鈕以及一些喜歡頁面的代碼,但我無法讓它工作。我如何知道用戶點擊Facebook的按鈕時?
當我喜歡的頁面螢火顯示了這個錯誤:
Event.__inlineSubmit is not a function
,並沒有任何反應(即無警報/重定向/其他)除了頁面被我喜歡。到目前爲止,該代碼:
<div id="fb-root"></div>
<script type="text/javascript">
<!--
window.fbAsyncInit = function() {
FB.init({ appId: '---MYAPPID---', status: true, cookie: true, xfbml: true });
FB.Event.subscribe('edge.create', function (href, widget) {
// track the click on the "Like" button here
alert(href);
});
};
(function() {
var e = document.createElement('script');
e.type = 'text/javascript';
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
//-->
</script>
<div class="fb-like" data-send="false" data-layout="box_count" data-width="60" data-show-faces="false"></div>
我得到一個錯誤:事件.__ inlineSubmit不是一個功能 - 即使使用此代碼 – user1559555
測試你的代碼,它工作正常...可能是你的代碼中的其他地方有錯誤。 – Abhishek
小提琴工作正常。 – Abhishek