0

有没有办法找到用 window.open 打开的浏览器弹出窗口是否有参数'scrollbars = yes'?我需要根据滚动条的打开或关闭来运行特定的代码,这意味着它们可能不会显示但它们仍然处于打开状态。

即使没有通用的浏览器解决方案,对 IE 的任何帮助都会很棒。

保罗

4

2 回答 2

1

I would try finding the code that handles the window.open and saving a global variable. Then you can access the global variable by using window.parent

于 2012-05-21T18:44:15.273 回答
0

尝试:

window.scrollbars.visible

这应该返回真或假。

请参阅https://developer.mozilla.org/en/DOM/window.scrollbars

于 2012-05-21T18:49:42.620 回答