Microsoft Edge中的“SCRIPT5:访问被拒绝”消息

时间:2015-11-11 09:14:59

标签: microsoft-edge

我在Microsoft Edge(版本20.10240.16384.0)中收到以下错误:

SCRIPT5: access denied message in edge

这是我的代码:

function getFrame( width, height ) {
    document.getElementById( this.contentid ).style.display = "none";
    this.frame = eval( this.editorid );
    return this.frame;
}

function init( width, height ) {
    this.frame = this.getFrame( width, height );
    this.doc = this.frame.document;  // <-- error
    // ~~~
}

父域和子域都是相同的。此外,Edge似乎不支持eval

1 个答案:

答案 0 :(得分:1)

此处的访问被拒绝消息是因为您尝试访问iframe。