window.openerで親画面が存在するか否かの分岐
1759 ワード
恒例のIEで思うように動かなかったのでメモします。
チェックしたブラウザ
- IE11
- firefox
- chrome
window.openerの値
親画面が存在する場合
全てのブラウザでオブジェクトが入る
親画面が存在しない場合
firefox、chrome
null
IE
undefined もしくは 空オブジェクト
IEでwindow.openerの値が空オブジェクトになる場面
子画面を出した後、親画面を閉じると、子画面においてwindow.openerの値が空オブジェクトになる
IEにも対応した、window.openerで親画面が存在するか否かの分岐方法
if ( !window.opener || !Object.keys(window.opener).length ) {
// 親画面が存在しない
} else {
// 親画面が存在する
}
if ( !window.opener || !Object.keys(window.opener).length ) {
// 親画面が存在しない
} else {
// 親画面が存在する
}
if ( window.opener || Object.keys(window.opener).length ) {} とすると
Object.keys()にオブジェクト以外を渡してエラーになるので注意です。
一言
相変わらずですねIEさん・・・
Author And Source
この問題について(window.openerで親画面が存在するか否かの分岐), 我々は、より多くの情報をここで見つけました https://qiita.com/bgn_nakazato/items/1080cbb0a3f893144288著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .