当框架被删除并重新添加时,window.frames[“frame_name”] 在 Firefox 中不起作用
- 向页面添加框架
- 删除它
- 添加另一个同名框架
window.frames["frame_name"]
不起作用
HTML
<iframe id="replaceme" name="frame_1"></iframe><br />
JS
$("body").append(window.frames[0].name + "<br />");
$("body").append(window.frames["frame_1"].name + "<br />");
$("body").append( (window.frames[0] == window.frames["frame_1"]) + "<br />");
$("#replaceme").remove();
$("body").append('<iframe name="frame_1"></iframe><br />');
$("body").append(window.frames[0].name + "<br />");
$("body").append(window.frames["frame_1"].name + "<br />");
$("body").append( (window.frames[0] == window.frames["frame_1"]) + "<br />");
这是错误还是预期行为?它在 Opera、Safari、Chrome 中运行良好。关于如何在 Firefox 中解决这个问题有什么建议吗?
- Add a frame to the page
- Remove it
- Add another frame with the same name
window.frames["frame_name"]
doesn't work
HTML
<iframe id="replaceme" name="frame_1"></iframe><br />
JS
$("body").append(window.frames[0].name + "<br />");
$("body").append(window.frames["frame_1"].name + "<br />");
$("body").append( (window.frames[0] == window.frames["frame_1"]) + "<br />");
$("#replaceme").remove();
$("body").append('<iframe name="frame_1"></iframe><br />');
$("body").append(window.frames[0].name + "<br />");
$("body").append(window.frames["frame_1"].name + "<br />");
$("body").append( (window.frames[0] == window.frames["frame_1"]) + "<br />");
Is this a bug or expected behavior? It works fine in Opera, Safari, Chrome. Any suggestions of how to work around it in Firefox?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如您已经发现的那样,这是一个错误。
除了不重复使用框架名称之外,还有两种解决方法:
1) 您可以在从 DOM 中删除相关框架时或在访问
之前删除 window.frames["frame_name"]
代码>window.frames["frame_name"]。任何一种都可以在 Firefox 中运行,但我无法与其他浏览器交互。2) 您可以改用
document.getElementById("frame_id").contentWindow
。最大的问题是 IE 兼容性,特别是在较旧的 IE 版本中......This is a bug, as you already figured out.
There are two options for workarounds, in addition to not reusing frame names:
1) You could
delete window.frames["frame_name"]
either when removing the relevant frame from the DOM or right before you accesswindow.frames["frame_name"]
. Either one should work in Firefox, but I can't speak to other browsers.2) You could switch to using
document.getElementById("frame_id").contentWindow
. The big problem there is IE compat, especially in older IE versions...