Questions tagged «key-events»

12
jQuery:如何在按下Enter键时触发点击事件
我需要在按Enter键后执行按钮单击事件。 到目前为止,该事件没有触发。 如果可能的话,请帮我语法。 $(document).on("click", "input[name='butAssignProd']", function () { //all the action }); 这是我在输入时触发点击事件的尝试。 $("#txtSearchProdAssign").keydown(function (e) { if (e.keyCode == 13) { $('input[name = butAssignProd]').click(); } });
165 jquery  key-events 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.