我有一个非常简单的jsfiddle,但会导致错误Uncaught ReferenceError: doSomething1 is not defined
或Uncaught ReferenceError: doSomething2 is not defined
。
这两种方法都已定义。
jsfiddle:https://jsfiddle.net/fjd4hzcz/3/
问题
导致方法无法识别的jsfiddle有什么问题?
我的代码非常简单,如下所示。
<button id="btn1" onclick="doSomething1();return false;">Call doSomething1 method</button>
<button id="btn2" onclick="doSomething2();return false;">Call doSomething2 method</button>
<script>
function doSomething1() {
alert("hi 1");
}
function doSomething2() {
alert("hi 2");
}
</script>