gpt4 book ai didi

html - “赞”按钮未显示在我的网站上

转载 作者:行者123 更新时间:2023-11-28 00:08:46 26 4
gpt4 key购买 nike

我正在尝试使用 Facebook 的点赞按钮进行一些测试。我想将它添加到我的站点,但它不显示。我正在使用适用于 Mac OS 的 Mamp 在本地对其进行测试。我在这里添加我的代码;你能帮我找出错误吗?我一直在尝试使用 FB SDK 和 iframe,但它们不显示任何内容。

<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : '145033796136', // App ID from the app dashboard
channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel file for x-domain comms
status : true, // Check Facebook Login status
xfbml : true // Look for social plugins on the page
});

// Additional initialization code such as adding Event Listeners goes here
};

// Load the SDK asynchronously
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<h1>Rumba Babylon</h1>
<section>
here probably show content
</section>
<aside>
<h1>SOCIAL PLUGINS</h1>
<div class="fb-like" data-href="https://www.facebook.com/enbodega?fref=ts"data-send="false" data-layout="box_count" data-width="450" data-show-faces="false"></div>
</aside>
<script src="js/jquery.js"></script>
<script src="js/main.js"></script>
</body>

最佳答案

尝试使用类似插件的 XFBML 版本:

替换

<div class="fb-like" data-href="https://www.facebook.com/enbodega?fref=ts"data-send="false" data-layout="box_count" data-width="450" data-show-faces="false"></div>

<fb:like href="https://www.facebook.com/enbodega?fref=ts" send="false" layout="box_count" width="450" show_faces="false"></fb:like>

如果还是不行,在 FB.init 之后添加:

FB.XFBML.parse();

关于html - “赞”按钮未显示在我的网站上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16750546/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com