像按钮 Internet Explorer 出现白框

发布于 2024-11-04 12:59:21 字数 674 浏览 1 评论 0原文

我有一些代码来显示类似按钮,这显示了但有一个我并不真正想要的随机白框。适用于所有其他浏览器

<!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>

white box

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>

white box

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

此生挚爱伱 2024-11-11 12:59:21

我也有这个问题。

关闭 iframe 标签并没有解决我的问题。

使用以下内容:

<iframe style="visibility:hidden;" onload="this.style.visibility = 'visible';" src="../examples/inlineframes1.html" > </iframe>

这为我自己解决了问题。

I also had this issue.

Closing the iframe tag did not provide a solution to my problem.

Use the following:

<iframe style="visibility:hidden;" onload="this.style.visibility = 'visible';" src="../examples/inlineframes1.html" > </iframe>

This resolved the issue for myself.

素手挽清风 2024-11-11 12:59:21

您忘记关闭 iframe,而是打开了另一个 iframe。尝试将第二个 更改为

You forgot to close the iframe and instead opened another one. Try changing the second <iframe> to </iframe>.

话少情深 2024-11-11 12:59:21

请关闭 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>

just close the iframe please :)

try this :

<iframe src="http://www.facebook.com/plugins/like.php?href=<SITE URL>"
        scrolling="no" frameborder="0"
        style="border:none; width:450px; height:80px"></iframe>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文