作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我的网站上实现类似 facebook 的按钮。代码中的前四行在“”标记结束后已经存在于我的网站上。
为了实现“赞按钮”,我添加了第二个脚本(第五行到最后)并运行应用程序。它给我一个错误
“Microsoft Jscript 运行时错误:'_onLoad' 为空或不是对象”
请告诉我。谢谢
<script type="text/javascript" src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php"></script>
<script type="text/javascript">
FB.init("myapikey", "xd_receiver.htm", { "reloadIfSessionStateChanged": true });
</script>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({appId: 'myappid', status: true, cookie: true,
xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
引用资料: http://developers.facebook.com/docs/reference/plugins/like
<fb:like href="http://webclip.in" layout="standard" show-faces="true" width="450" action="like" font="arial" colorscheme="light"/>
最佳答案
有一种新方法可以在您的网站上添加点赞按钮。
进入这个页面, http://developers.facebook.com/docs/reference/plugins/like-box
并通过输入参数创建代码,然后单击“获取代码”
这是一个例子
<iframe
src="http://www.facebook.com/plugins/likebox.php?id=185550966885&width=292&connections=10&stream=true&header=true&height=587"
scrolling="no" frameborder="0"
style="border:none; overflow:hidden; width:292px; height:587px;" allowTransparency="true">
</iframe>
或者只是(如果你使用 facebook 的 Javascript SDK)
<fb:like-box profile_id="185550966885"></fb:like-box>
也在页面中 http://developers.facebook.com/docs/reference/plugins/like有一个 Get Code... 可以使用,无需在您的代码中添加此 javascript。
关于asp.net - 如何为我的网站实现 Facebook "Like"按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2854051/
我是一名优秀的程序员,十分优秀!