我试图通过iFrame使用Facebook Like按钮,如下所示:
<iframe id="test" src="http://www.facebook.com/plugins/like.php?
href=http://yoururl.com/&
layout=button_count&
show_faces=false&
width=50&
action=like&
colorscheme=light&
height=21"
scrolling="no" frameborder="0"
style="border:none; overflow:hidden; width:50px;
height:21px;"
allowTransparency="true">
用户第一次点击“赞”后,我想在我的DOM内容中执行一些Javascript。我该怎么做呢?
答案 0 :(得分:5)
你的意思是你想在你喜欢的时候执行一些Javascript吗?
您可以使用Facebook Javascript SDK,尤其是edge.create
事件
参见
这也适用于IFrame版本。如果没有,您必须切换到XFBML-Like按钮。它绝对适用于XFBML版本。
示例:
<!-- Load the SDK (or even better, load it asynchronously. See first link above -->
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
// initalize your Facebook App
FB.init({
appId : 'YOUR APP ID',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// subscribe to the event
FB.Event.subscribe('edge.create', function(response) {
alert('you liked this');
});
FB.Event.subscribe('edge.remove', function(response) {
alert('you unliked this');
});
</script>
<!--
The XFBML Like Button, if the iframe version doesn't work (not 100% sure)
<fb:like></fb:like>
-->