在Internet Explorer中从JavaScript中止解析器

时间:2012-04-20 12:09:14

标签: javascript internet-explorer

在Gecko和WebKit中,您可以通过调用托管文档的浏览上下文的window.stop()对象上的Window来中止活动的HTML解析器。

有没有办法在IE中从JavaScript中止HTML解析器而不导致其他地方的导航(window.location)并且不删除文档的内容并立即创建新的解析器(document.open())?

也就是说,有没有办法使用JavaScript来触发用户按下“停止”按钮的效果?

(用例是研究在IE中中止解析器的效果。)

1 个答案:

答案 0 :(得分:1)

请参阅Stop iframe from loading

引用:

对于IE,您可以使用document.execCommand('Stop')执行相同的操作:

window.frames[0].document.execCommand('Stop')