我是JQuery的新手,我遇到了一些问题:
这是功能:
$(document).ready(function() {
$("#editButton").click(function() {
alert('test');
});
});
这是按钮:
<h:commandButton id="editButton"/>
然后JQuery不起作用,但是如果我将h:commandButton更改为<button>
它确实有效。
知道为什么会这样吗?
谢谢!