自分自身のウィンドウを警告なしで閉じる方法(IE限定)
http://www.geocities.jp/uchblog/example/js/closemyself.html
こんな感じでスクリプトを書くと可能。
function closeMyself(){ window.opener = "myself"; window.close(); }
window.openerの情報が有効だとwindow.close()実行時に警告は出ないらしい。
最近IEの事ばかり詳しくなる。こりゃいかん。
http://www.geocities.jp/uchblog/example/js/closemyself.html
こんな感じでスクリプトを書くと可能。
function closeMyself(){ window.opener = "myself"; window.close(); }
window.openerの情報が有効だとwindow.close()実行時に警告は出ないらしい。
最近IEの事ばかり詳しくなる。こりゃいかん。