Prevent form submission on Enter key press

前端 未结 19 2238
失恋的感觉
失恋的感觉 2020-11-22 04:18

I have a form with two text boxes, one select drop down and one radio button. When the enter key is pressed, I want

19条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-22 05:08

    Use both event.which and event.keyCode:

    function (event) {
        if (event.which == 13 || event.keyCode == 13) {
            //code to execute here
            return false;
        }
        return true;
    };
    

提交回复
热议问题