我正在打开另一个网站的弹出窗口(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);

    }
}

最佳答案

弹出另一个网站(google oauth2)


由于same origin policy,您无法读取其他域的内容。

10-06 06:13