Operaでバグのような問題が発生しました。ポップアップウィンドウの "閉じた"プロパティを取得しようとしています。JavaScriptとOperaの "window.open"によって "closed"プロパティの異常が返される
ここで実行した操作です。
>>> win = open('some url in the same domain with the parent window','name','feature')
Window
>>> win.closed //at this point, the popup window is not closed
false
>>> win.closed //at this point, the pop window is closed
false //this should be true
第2の「偽」は、私が予想しているように「真」でなければなりません。
ChromeとFirefoxで実行しましたが、それは問題ありません。
ヒント?
PS:私はオペラ11.2、Linuxの
jsfiddleで例を設定できますか? – Jivings
あなたは 'win.close()'を使いましたか – mgraph
@mgraphそうする必要があります。 – Jivings