我正在尝试在表单上禁用 Enter 键提交,但允许为我正在收听的其他代码注册 Enter 键事件。这可能吗?
$('#createPost :input').on("keypress", function(e) {
if(e.target.id == 'post-author' && e.which == 13){
e.stopPropagation();
e.stopImmediatePropagation();
}
});
不工作:(它仍然提交表单