How to disable auto submit behavior when hitting enter key?

前端 未结 7 1281
故里飘歌
故里飘歌 2020-12-17 16:52

I want to hit enter key to go to p2.htm or p3.htm according to the input text that I was typing in. And I also want to hit submit1 button to alert(\'no1\') manually.

<
7条回答
  •  失恋的感觉
    2020-12-17 17:28

    The problem with the accepted solution is that normal submit buttons no longer work. You must script all the buttons.

    Here's a better solution that doesn't break non javascript submit buttons. This solution simply tells the browser to not do default behavior when a user hits the enter key on form inputs.

    // prevent forms from auto submitting on all inputs
    $(document).on("keydown", "input", function(e) {
      if (e.which==13) e.preventDefault();
    });
    

提交回复
热议问题