我正在打开另一个网站(google oauth2)的弹出窗口。我加载的网站将在标题栏中显示信息,因此我想监控标题栏以提取信息。但是,每当我这样做时,即使窗口确实有标题,标题也总是空白。以下是我现在正在尝试进行的测试。
var authWindow = null;
function popup(url) {
authWindow = window.open(url, 'Authentication', 'height=600,width=450');
if (window.focus) {
authWindow.focus();
}
$(authWindow.document).ready(monitorForAuthCode);
}
function monitorForAuthCode()
{
if (authWindow && authWindow.closed == false)
{
var code = authWindow.document.title;
$('#hash').html($('#hash').html() + code + '<br>');
setTimeout(monitorForAuthCode, 1000);
}
}