在IE Edge中的document.open()之后权限被拒绝

时间:2016-02-25 04:40:35

标签: javascript jquery

使用代码后,我收到错误“权限被拒绝”

var data = "Hello, World! first";

document.open();
document.write(data);
document.close();

enter image description here

注意:它在Firefox和Chrome中运行良好,但在IE中却不行。

然后,我将其更改为以下内容:

window.document.open();
window.document.write(data);
window.document.close();

现在它工作正常,所以有人可以为我解释为什么,因为我是Javascript的新手。

0 个答案:

没有答案