阻止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)的主要内容,如果未能解决你的问题,请参考以下文章