阻止Enter提交表单(jQuery)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阻止Enter提交表单(jQuery)相关的知识,希望对你有一定的参考价值。

  1. $('.no-enter').keypress(function(e){ //Stop form fields with class 'no-enter' from submitting the form when the user presses enter
  2. if(e.which == 13){ //Identifies the enter key as the key pressed
  3. e.preventDefault(); //Stops the enter key from performing default function
  4. alert('no enter'); //Put whatever you want to happen here
  5. }
  6. });

以上是关于阻止Enter提交表单(jQuery)的主要内容,如果未能解决你的问题,请参考以下文章

html表单在特定输入上按Enter键时阻止提交[重复]

除了提交按钮之外,还使用 ​​Enter 键提交 JQuery 表单

jQuery阻止提交表单的实现方法

阻止用户提交表单

jQuery,阻止表单提交,然后继续

JQuery.Validate 插件可以阻止提交 Ajax 表单吗