在后台页面中:
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.location.href
未定义以及为什么我无法访问 w ( w.document.write('qweqwe');//document==undefined
) 中的任何脚本?
我需要: 1. 打开带有 URL 的页面。2. 检测重定向。3. 获取重定向我的页面的 URL。4. 对第二个 URL 做一些事情。