标签: javascript popup
在html5中,是否有类似的功能:
document.getAllPopups()
返回当前窗口已打开的所有弹出窗口。例如,如果我做了
var P = window.open("blah.com");
然后P == document.getAllPopups()[0]应为true。
P == document.getAllPopups()[0]
true
有办法做到这一点吗?
由于