阻止Enter提交表单(jQuery)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阻止Enter提交表单(jQuery)相关的知识,希望对你有一定的参考价值。
$('.no-enter').keypress(function(e){ //Stop form fields with class 'no-enter' from submitting the form when the user presses enter if(e.which == 13){ //Identifies the enter key as the key pressed e.preventDefault(); //Stops the enter key from performing default function alert('no enter'); //Put whatever you want to happen here } });
以上是关于阻止Enter提交表单(jQuery)的主要内容,如果未能解决你的问题,请参考以下文章