Front-end/JQUERY

Form, input Enter 시 submit 막기

Ho's log 2021. 7. 26. 18:20

Keycode == 13 이벤트를 이용하여 

input[type = text] 기본 이벤트를 막아 버린다.

$('input[type="text"]').keydown(function() {
		if (event.keyCode === 13) {
		  event.preventDefault();
		};
	});

 

'Front-end > JQUERY' 카테고리의 다른 글

Jquery each  (0) 2021.07.27