Chrome iframe父级未定义

时间:2011-03-06 14:38:48

标签: javascript google-chrome greasemonkey userscripts

我有这个Gmail脚本。它在canvas_frame iframe内部运行 我想使用parent.document获取父文档的句柄。但在Chrome中告诉我它未定义。在Firefox中运行良好,但在Chrome上爆炸 那么我究竟如何从Chrome中的iframe中获取父文档的句柄 Chrome版本:11.0.686.3

这是失败的代码:

function init() {
    try {
        if(parent == null) {
            console.log(typeof parent);
            window.setTimeout(init, 200);
            return;
        }
        // SOME MORE STUFF
    } catch(e) { console.log(e) }
}

这部分只是在日志窗口中无休止地输出undefined 这是一个产生相同结果的测试脚本。它会无休止地输出undefined,然后输出cQ

// ==UserScript==
// @name           TEST SCRIPT FOR CHROME
// @version        1.0
// @namespace      1nfected
// @description    TEST
// @include        http://mail.google.com/*
// @include        https://mail.google.com/*
// ==/UserScript==

(function() {
if(document.documentElement.className != 'cQ') {
    console.log('not our frame');
    return;
}
function init() {
    if(window.parent == null) {
        console.log(typeof window.parent);
        console.log(document.documentElement.className);
        window.setTimeout(init, 1000);
        return;
    }
    console.log('Found the parent');
}
init();
})();

2 个答案:

答案 0 :(得分:4)

Chrome中的UserScripts是有限的,特别是涉及iframe时。

你有什么理由不能这样做吗?例如:

var frame = document.getElementById('canvas_frame');
if (frame) {
  var dom = frame.contentDocument;
}

这里更好的答案是Chrome Extensions,您可以使用Content Script而不是用户脚本进行更多控制。

答案 1 :(得分:0)

我终于意识到,在谷歌浏览器中,用户脚本被拒绝访问window.parent 只有将脚本注入网页才会有效。