Disabling enter key for form

后端 未结 12 810
深忆病人
深忆病人 2020-12-04 21:07

I have been trying to disable the Enter key on my form. The code that I have is shown below. For some reason the enter key is still triggering the submit. The cod

12条回答
  •  佛祖请我去吃肉
    2020-12-04 22:02

    this is in pure javascript

            document.addEventListener('keypress', function (e) {
                if (e.keyCode === 13 || e.which === 13) {
                    e.preventDefault();
                    return false;
                }
                
            });

提交回复
热议问题