我正在尝试添加 facebook like 按钮,已按照 Fb 开发人员网站的步骤操作,将其放置在需要的位置,并尝试了各种其他解决方案以解决类似按钮未显示的问题。有人可以解释为什么在我将文件上传到服务器后,然后在浏览器中查看源代码,facebook like 按钮的代码不再存在吗?甚至围绕代码的整个 div 标签也丢失了。当我查看服务器上的文件时,它包含按钮的代码,但浏览器似乎无法识别它。
我读过关于必须创建 API 密钥(应用程序 ID)的信息,但也听说没有必要。此外,如果 facebook 帐户具有国家限制等设置,它可能会弄乱按钮是否显示,但我试图设置的页面是喜欢另一个站点上的 facebook 页面。我错过了什么?
请帮忙!
这是我在代码中的内容:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">
身体里多了一些东西……
<div class="sideFigures">
<div class="like">
<iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2FEntertainmentIndustryIntroductionConvention&send=false&layout=button_count&width=150&show_faces=false&font=verdana&colorscheme=light&action=like&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowTransparency="true"></iframe>
</div>
<img src="images/eiic figures.png" width="252" height="497" /> </div>
但是当我从浏览器查看源代码时(在这个例子中来自 IE),这就是我所看到的:
<html xmlns="http://www.w3.org/1999/xhtml">
和包含like按钮的div...
<div class="sideFigures"><img src="images/eiic figures.png" width="252" height="497" /></div>