gpt4 book ai didi

javascript - IE 置顶!==this(window)

转载 作者:行者123 更新时间:2023-11-29 10:49:02 26 4
gpt4 key购买 nike

为了防止 iframing,我在顶部范围添加了这段代码(这意味着 this==window):

if(top!==this)top.location.search="?removeFrame"

这在除 IE 之外的所有浏览器中都完美运行(在 IE 8 中失败,不断刷新,不确定在以后的版本中是否有效),我认为这是因为 IE 没有考虑 top==this 连主窗口都在顶部

如何重写这段代码使其兼容IE?

最佳答案

尝试改变:

if(top!==this)top.location.search="?removeFrame"

if(top!=this)top.location.search="?removeFrame"

根据 this post ,我们应该避免在比较窗口对象时使用严格的 (===) 运算符

关于javascript - IE 置顶!==this(window),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13908028/

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