如果您按键盘上的enter
,表格会自动发送。
我希望只有在特定字段(#myText') has focus when you press
输入`。
感谢this,我现在有了这个代码:
$('#myText').on('focusin', function() {
console.log('focusin');
$(window).keydown(function(event){
if(event.keyCode == 13) {
console.log('enter!');
event.preventDefault();
return false;
}
});
});
但它效果不好,因为当场失去焦点时,按enter
没有任何反应。
我哪里错了?
答案 0 :(得分:3)