iframe不会停止加载 [英] Iframe doesn't stop to loading

查看:137
本文介绍了iframe不会停止加载的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

正如这篇文章所述,我正在尝试设置Iframe的内容with:

As answered in this post, I'm trying to set an Iframe's content with :

document.getElementById("iframe").contentDocument.write("Test123");

问题是即使一切似乎都有效(Iframe显示Test123),浏览器也没有不要加载。实际上,在Firefox的标签中,它与旋转器一起写成正在连接......,表示它仍在加载。

The problem is that even though everything seems to work (the Iframe is displaying Test123), the browser doesn't stop loading. Indeed, in Firefox's tab it's written "Connecting ..." with the spinner indicating it's still loading.

为什么会发生?是否有更好的解决方案来设置Iframe的内容?

Why does it happen ? Is there a better solution to set an Iframe's content ?

推荐答案

您需要关闭iframe连接:

You need to close the iframe connection:

document.getElementById("iframe").contentDocument.close();

我认为这样可行。

这篇关于iframe不会停止加载的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆