JSによって開かれたポップアップのURLを取得するにはどうすればよいですか。これが私のコードです:
var _url = 'someurlhere';
var popupwindow = window.open(_url, "Popup", 'width=800, height=600');
var _this = this;
var pollTimer = window.setInterval(function() {
try {
console.log(popupwindow.document.URL);
} catch(e) {
console.log(e.message);
}
}, 500);
しかしCannot read property 'URL' of undefined
、console.log(e.message)の行でエラーが発生します。なんで ?