バックグラウンド ページ:
var w = window.open(URL,'Example','width=675,height=350');
temp.page=setInterval(function(){
if (w.location.href!=URL) {
clearInterval(temp.page);
alert(w.location.href); //undefined
w.close();
}
},1000);
では、なぜ未定義であり、w ( )w.location.href
でスクリプトを実行するためにアクセスできないのはなぜですか?w.document.write('qweqwe');//document==undefined
1. URL のあるページを開きます。2. リダイレクトを検出します。3. リダイレクト先のページの URL を取得します。4. 2 番目の URL で何かを行います。