JavaScript input输入框点击回车时触发事件 2017-07-14 584 1 $("#id").keydown(function(event){if(event.keyCode ==13){alert(触发了事件);}});注:keydown,keypress,keyup事件都可以。