gpt4 book ai didi

javascript - 停止页面加载的方法已经过时了吗?

转载 作者:行者123 更新时间:2023-12-02 18:46:52 24 4
gpt4 key购买 nike

我想向我的页面添加一个停止按钮,它可以停止加载 iframe 内的页面。

假设,如果我在 iframe 中打开 www.bbc.com,并且不想阻止其加载一半,而不阻止父页面加载。

我发现了一些 2007-2010 年的旧帖子,建议使用 JS:

HTML:

<input type="button" value="Stop" onclick="stopFrameLoad(); return false;"/>

JS:

<script type="text/javascript">
function stopFrameLoad()
{
window.stop(); //NS only
document.execCommand("Stop"); //IE only
}
</script>

但看起来这只适用于 IE 和 NS。有什么方法可以让它在所有浏览器中工作吗?

另外,上面的例子是 2010 年的。我想知道现在是否还有另一种方法可以做到这一点?

最佳答案

window.stop(); //should work in all major browsers

document.execCommand("Stop"); //is necessary to support IE

另请参阅How to stop page load in html static page

关于javascript - 停止页面加载的方法已经过时了吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16288442/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com