本文介绍了为什么这个JSFiddle不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我写了一个简单的函数:
I have written a simple function:
function clickedMe() {
alert(this + " : " + this.tagName + " : " + this.id);
}
我在按钮元素的点击事件上调用它
And I am calling it on click event of button element
<button onclick="clickedMe()">button</button>
当我在本地创建一个独立的HTML页面时,这是有效的。但它似乎不适用于JSFiddle。以下是链接:
This works when I created a standalone HTML page locally. However it does not seem to work on JSFiddle. Here is the link: http://jsfiddle.net/Mahesha999/fACce/
这里有什么问题?
推荐答案
选择没有换行< head> /< body>
。
它不起作用,因为 clickedMe
不在全球范围内。
It doesn't work because clickedMe
is not in the global scope.
这篇关于为什么这个JSFiddle不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!