我想知道如何用自定义超链接替换('like'+ href)。 例如:“谢谢你喜欢我们。访问example.com”
<html>
<body>
<fb:like href="http://www.example.com/" show_faces="true" width="450"></fb:like>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/it_IT/all.js#xfbml=1"></script>
<script>
FB.Event.subscribe('edge.create', function(href, widget) {
alert('like '+href);
});
FB.Event.subscribe('edge.remove', function(href, widget) {
alert('dislike '+href);
});
</script>
</body>
</html>
答案 0 :(得分:3)
如果这就是你要做的全部,只需用'like '+href
替换字符串'Thanks for liking our page, please visit our site at whatever.com'
- 否则你不清楚你在问什么。
如果您想重定向用户,只需使用标准的javascript重定向代替alert();
调用