我需要在按Enter键后执行按钮单击事件。
到目前为止,该事件没有触发。
如果可能的话,请帮我语法。
$(document).on("click", "input[name='butAssignProd']", function () {
//all the action
});
这是我在输入时触发点击事件的尝试。
$("#txtSearchProdAssign").keydown(function (e) {
if (e.keyCode == 13) {
$('input[name = butAssignProd]').click();
}
});
附带说明:
—
Hashem Qolami 2013年
e.keyCode
不是完全跨浏览器。使用e.which
代替。
e.preventDefault();