本文介绍了错误消息:JSFiddle中不允许使用document.write的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我尝试在JSFiddle上运行我的一个JavaScript文件时,收到以下错误消息:
When I try to run one of my JavaScript files on JSFiddle, I get the following error message:
如何解决此问题?
注意: 当我使用外部资源时,它可以正常工作。但我想使用JavaScript面板作为脚本。
Note: When I use external resources, it works fine. But I want to use the JavaScript panel for scripts.
推荐答案
这里有一个替代方案:
Here's one alternative: http://jsfiddle.net/skibulk/erh7m9og/1/
document.write = function (str) {
document.body.insertAdjacentHTML("beforeend", str);
}
document.write("¡hola mundo");
这篇关于错误消息:JSFiddle中不允许使用document.write的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!