为什么我的 JavaScript 不能在 JSFiddle 中运行?
我找不到这个 JSFiddle 的问题。
HTML:
<input type="button" value="test" onclick="test()">
JavaScript:
function test(){alert("test");}
当我点击按钮时 - 什么也没发生。控制台显示“测试未定义”
我已阅读 JSFiddle 文档 - 它说 JS 代码已添加到 中,HTML 代码已添加到
< /code> (所以这个 JS 代码早于 html 并且应该可以工作)。
I can't find out what is the problem with this JSFiddle.
HTML:
<input type="button" value="test" onclick="test()">
JavaScript:
function test(){alert("test");}
And when I click on button - nothing happened. The console says "test not defined"
I've read the JSFiddle documentation - there it says that JS code is added to <head>
and HTML code is added to <body>
(so this JS code is earlier than html and should work).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
如果您不指定换行设置,则默认为“onLoad”。这导致所有 JavaScript 都被包装在加载结果后运行的函数中。所有变量都是该函数的局部变量,因此在全局范围内不可用。
将环绕设置更改为“不环绕”,它将起作用:
http://jsfiddle.net/zalun /Yazpj/1/
我将框架切换为“无库”,因为您不使用任何库。
If you do not specify the wrap setting it defaults to "onLoad". This results with all JavaScript being wrapped in a function run after result has been loaded. All variables are local to this function thus unavailable in the global scope.
Change the wrapping setting to "no wrap" and it'll work:
http://jsfiddle.net/zalun/Yazpj/1/
I switched the framework to "No Library" as you don't use any.
该函数是在加载处理程序内部定义的,因此位于不同的范围内。正如 @ellisbben 在评论中指出的那样,您可以通过在
window
对象上显式定义它来解决此问题。更好的是,更改它以将处理程序不显眼地应用到对象: http://jsfiddle.net/pUeue/注意应用处理程序这样,而不是内联,可以保持 HTML 干净。我正在使用 jQuery,但如果您愿意,您可以使用或不使用框架或使用不同的框架来实现。
The function is being defined inside a load handler and thus is in a different scope. As @ellisbben notes in the comments, you can fix this by explicitly defining it on the
window
object. Better, yet, change it to apply the handler to the object unobtrusively: http://jsfiddle.net/pUeue/Note applying the handler this way, instead of inline, keeps your HTML clean. I'm using jQuery, but you could do it with or without a framework or using a different framework, if you like.
还有另一种方法,将您的函数声明为这样的变量:
jsFiddle
详细信息
编辑(基于关于@nnnnnn的评论)
@nnnnnn:
当您定义这样的函数时:
该函数是在本地定义的,但是当您定义不带
var
的函数时:test
是在window
上定义的位于顶级范围的对象。就像@zalun 说的:
但是,如果您使用此语法:
您可以访问函数
test
,因为它是全局定义的参考:
There is another way, declare your function into a variable like this :
jsFiddle
Details
EDIT (based on the comments of @nnnnnn)
@nnnnnn :
When you define a function like this :
The function is defined locally, but when you define your function without
var
:test
is defined on thewindow
object which is at the top level scope.Like @zalun say :
But if you use this syntax :
You have an access to the function
test
because it's defined globallyReferences :
更改框架中的换行设置扩展面板,设置为“无封装
”
Change wrap setting in the Frameworks & Extensions panel, to "No wrap-in
<body>
"您的代码没有问题。只需从右侧选择扩展 onLoad() 即可。
There is no problem with your code.Just choose the extension onLoad() from right side.
HTML:
JavaScript:
HTML:
JavaScript: