Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的目标是覆盖对 iframe 中执行的所有脚本的最顶层窗口的引用。我有以下代码经过测试可以在 IE 8+ 和 FireFox 3,6+ 中运行,但在 Chrome 19 中不起作用。
var top = "test"; console.debug(top);
这会在 IE 和 FireFox 中输出:“test”,但会在 chrome 中显示对顶部窗口的引用。Chrome是否有可能使用一种机制来避免引用被覆盖?
问题 10279:JSC 和 V8 之间的 window.top 阴影不同
问题 26220:window.top 不能用 var 隐藏(与其他浏览器不同)