Form, input Enter 시 submit 막기 Keycode == 13 이벤트를 이용하여 input[type = text] 기본 이벤트를 막아 버린다. $('input[type="text"]').keydown(function() { if (event.keyCode === 13) { event.preventDefault(); }; }); Front-end/JQUERY 2021.07.26