我不是网络开发人员所以请将此作为新问题。
我有简单的网页:
<!doctype html>
<html>
<head></head>
<body>
<p>
Some text
</p>
</body>
</html>
我想在FB instructions之后将此类按钮添加到此页面。这是结果:
<!doctype html>
<html>
<head></head>
<body>
<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_GB/sdk.js#xfbml=1&version=v2.5";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<p>
Some text
</p>
<div class="fb-like" data-href="https://www.facebook.com/EasyTypeApp" data-width="100" data-layout="button" data-action="like" data-show-faces="false" data-share="false"></div>
</body>
</html>
未显示FB按钮。我在localhost上测试,只是将文件保存为index.html
并在浏览器中打开它。我找到了一个建议,在这种情况下,我需要在//connect.facebook.net...
前加上http
。所以我做到了
js.src = "http//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.5";
但它仍然无效。我该如何解决?