使用代码后,我收到错误“权限被拒绝”
var data = "Hello, World! first";
document.open();
document.write(data);
document.close();
注意:它在Firefox和Chrome中运行良好,但在IE中却不行。
然后,我将其更改为以下内容:
window.document.open();
window.document.write(data);
window.document.close();
现在它工作正常,所以有人可以为我解释为什么,因为我是Javascript的新手。