从框架集中的框架调用时,top.close() 在 Firefox 中不起作用
我有一个包含框架集的弹出窗口。我在类“top.close()”的框架之一中有一个“关闭”按钮来关闭opopup窗口。 它在 IE 中有效,但在 Firefox 中您会收到错误“top.close 不是函数”。
I have a popup window that contains a frameset. I have a "Close" button in one of the frames that class "top.close()" to close the opopup window.
It works in IE but in Firefox you get an error "top.close is not a function".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我必须查看您的标记,但很可能
top
是您不期望的东西,或者您的框架集有一个名为“close”的框架,并且您遇到了奇怪的 IE 行为,其中 < code>top.close 是一个窗口,但top.close()
在顶层窗口中调用一些名为close
的函数。I'd have to see your markup, but chances are either
top
is something you're not expecting or your frameset has a frame named "close" and you're running into the weird IE behavior wheretop.close
is a Window buttop.close()
calls some function namedclose
in the toplevel window.