我有一些代码来显示一个像按钮,这显示但是随机的白色框我不想要。适用于所有其他浏览器
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"><body>
<iframe src="http://www.facebook.com/plugins/like.php?href=<SITE URL>"
scrolling="no" frameborder="0"
style="border:none; width:450px; height:80px"><iframe>
</body>
</html>
答案 0 :(得分:1)
我也遇到过这个问题。
关闭iframe代码并不能解决我的问题。
使用以下内容:
<iframe style="visibility:hidden;" onload="this.style.visibility = 'visible';" src="../examples/inlineframes1.html" > </iframe>
这解决了我自己的问题。
答案 1 :(得分:0)
您忘记关闭iframe
而是打开另一个。尝试将第二个<iframe>
更改为</iframe>
。
答案 2 :(得分:0)
请关闭iframe:)
试试这个:
<iframe src="http://www.facebook.com/plugins/like.php?href=<SITE URL>"
scrolling="no" frameborder="0"
style="border:none; width:450px; height:80px"></iframe>