본문 바로가기

컴퓨터

JAVASCRIPT input 안에서 엔터 쳐서 submit 하기

submit 버튼을 클릭하지 않고, input 창 안에서 엔터 쳐서 submit 하려면,

<input type="text" onkeypress="if(event.keyCode==13){formname.submit();}">

라고 작성하면 된다.