如何通过弹出窗口打开窗口的标题?

时间:2011-11-01 17:25:27

标签: javascript popup

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

    }
}

1 个答案:

答案 0 :(得分:2)

  

另一个网站的弹出窗口(google oauth2)

由于same origin policy

,您无法阅读其他域的内容