javascript – 错误消息:JSFiddle中不允许使用document.write

前端之家收集整理的这篇文章主要介绍了javascript – 错误消息:JSFiddle中不允许使用document.write前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我尝试在JSFiddle上运行我的一个 JavaScript文件时,我收到以下错误消息:

document.write is disallowed in JSFiddle environment and might break your fiddle.

如何解决这个问题?

注意:当我使用外部资源时,它工作正常.但是我想使用JavaScript面板的脚本.

解决方法

它的代码没有任何问题.它与jsfiddle有关,它不允许运行那些具有document.write的代码.

作为替代,您可以使用

console.log(x);

你曾经在哪里

document.write(x);

并检查chrome检查器或firebug控制台以验证结果.

如果您更关心为什么document.write被jsfiddle阻止,以下So帖子可能有助于更好地理解.

Why am i receiving this jsfiddle error,document.write can be a form of eval

Why is document.write considered a “bad practice”?

猜你在找的JavaScript相关文章