3

ページを気に入ったときに起動されるコードとともに [いいね] ボタンを実装しようとしましたが、機能させることができません。

ページが気に入ると、FIrebug は次のエラーを表示します。

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>
4

1 に答える 1

4

http://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

FB.Event.subscribe('edge.create',
function(response) {
    alert('You liked the URL: ' + response);
}
);
于 2012-08-26T10:53:17.263 に答える