像按钮 Internet Explorer 出现白框
我有一些代码来显示类似按钮,这显示了但有一个我并不真正想要的随机白框。适用于所有其他浏览器
<!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>
I have some code to display a like button and this shows but with a random white box that i dont really want. Works in all other browsers
<!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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我也有这个问题。
关闭 iframe 标签并没有解决我的问题。
使用以下内容:
这为我自己解决了问题。
I also had this issue.
Closing the iframe tag did not provide a solution to my problem.
Use the following:
This resolved the issue for myself.
您忘记关闭
iframe
,而是打开了另一个 iframe。尝试将第二个更改为
。
You forgot to close the
iframe
and instead opened another one. Try changing the second<iframe>
to</iframe>
.请关闭 iframe :)
试试这个:
just close the iframe please :)
try this :