我使用按钮onClick事件,但似乎无法正常工作,
我已经阅读了很多SO文章并尝试了许多方法,但是仍然无法正常工作,这个问题有什么用?
<input type="button" value="button text" onclick="CallFunc()" />
知道为什么吗?
最佳答案
HTML:
<input id="myButton" type="button" value="button text"/>
jQuery的:
$("#myButton").click(function(e){
//your codes
});
关于javascript - 点击事件按钮不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25647032/