我从Facebook开发者处获取此代码:https://developers.facebook.com/docs/plugins/share-button
<html>
<head>
<title>Your Website Title</title>
<!-- You can use Open Graph tags to customize link previews.
Learn more: https://developers.facebook.com/docs/sharing/webmasters -->
<meta property="og:url" content="http://www.your-domain.com/your-page.html" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Your Website Title" />
<meta property="og:description" content="Your description" />
<meta property="og:image" content="http://www.your-domain.com/path/image.jpg" />
</head>
<body>
<!-- Load Facebook SDK for JavaScript -->
<div id="fb-root"></div>
<script>(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/sdk.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- Your share button code -->
<div class="fb-share-button"
data-href="http://www.your-domain.com/your-page.html"
data-layout="button_count">
</div>
</body>
</html>
什么都没发生,没有按钮出现......出了什么问题?
答案 0 :(得分:0)
似乎没有添加实际的按钮元素。这是所有的代码吗?就像是 &#39;&#39;按钮类型=&#34;按钮&#34;&gt;在Facebook上分享
答案 1 :(得分:0)
好的,所有这些似乎都在那里,你只需要添加一个实际的按钮。你有一个代码和链接,但不是元素本身。 how to add a button via W3C
答案 2 :(得分:0)
您遗漏了这一部分:“第3步:将此代码放在您希望插件显示在页面上的任何位置”:
<div class="fb-share-button" data-href="https://developers.facebook.com/docs/plugins/" data-layout="button_count" data-mobile-iframe="false"></div>
data-href
值必须是您自己的链接。
答案 3 :(得分:0)
问题是ADBLOCK,它隐藏了div ......