admin管理员组文章数量:1343839
Sorry, really stupid question here. If you post a question about javascript or jquery, people often say - create a jsfiddle.
So, I did. My question will be about getting divs to slide up using jquery but, I can't even get a basic javascript function to run in jsfiddle.
/
<div onclick="showit()">Hello</div>
function showit()
{
alert('hi');
}
A div, click on it to call a javascript function, but jsfiddle says the function is not defined. Can you not do this in jsfiddle?
Sorry, really stupid question here. If you post a question about javascript or jquery, people often say - create a jsfiddle.
So, I did. My question will be about getting divs to slide up using jquery but, I can't even get a basic javascript function to run in jsfiddle.
http://jsfiddle/ubq6E/
<div onclick="showit()">Hello</div>
function showit()
{
alert('hi');
}
A div, click on it to call a javascript function, but jsfiddle says the function is not defined. Can you not do this in jsfiddle?
Share Improve this question edited Mar 21, 2013 at 17:51 Cody Guldner 2,8961 gold badge26 silver badges36 bronze badges asked Mar 21, 2013 at 9:18 Martin SmellworseMartin Smellworse 1,7624 gold badges29 silver badges48 bronze badges 3- 2 Yes, change where the JS is included: jsfiddle/ubq6E/1 – James Allardice Commented Mar 21, 2013 at 9:20
- 2 See the second select box on the left hand side, at the top? Also inspecting the source of the result frame could give some insights. You can find more information in the documentation: doc.jsfiddle/basic/…. – Felix Kling Commented Mar 21, 2013 at 9:20
- Thank you both - thought it was about time I gave up this lark. – Martin Smellworse Commented Mar 21, 2013 at 9:29
1 Answer
Reset to default 10You've selected the default onLoad
option in jsfiddle.
This causes the site to wrap your entire code within a callback function, meaning that your showit
function is not a global function as required by DOM0 inline event handlers.
There are several work arounds, in my personal order of preference:
don't use DOM0 inline handlers, they're really old school - look into
element.addEventListener()
instead and separate your markup from your JS.use
window.showit = function() { ... }
instead to force your function to appear in the global name space.select one of the "no wrap" options
本文标签: javascripttesting a function in jsfiddleStack Overflow
版权声明:本文标题:javascript - testing a function in jsfiddle - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743720990a2527564.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论