티스토리 뷰
form태그 내 input(type=text) 1개일 시, input에서 엔터키입력=>자동 submit
발라키르카 2017. 12. 18. 17:30case1. input(text) 1개일 때 자동 서브밋을 그대로 이용. (onkeypress 를 넣지 않음)
========================================================
<script>
function check(){
if(!(document.f.pwd.value=="1234"))
return false;
}
</script>
<form action="2.jsp" method="post" name="password" onsubmit="return check()">
<input type="text" name="pwd">
</form>
=========================================================
case2. 강제로 input(text) 2개를 만듬. (추천?)
=========================================================
<script>
function enter(){
if (event.keyCode == 13)
check();
}
function check(){
if( document.f.pwd.value=="1234")
password.submit();
else
return false;
}
</script>
<form action="2.jsp" method="post" name="password" onsubmit="return check()">
<input type="text" name="pwd" onkeyperss="enter()">
<input type="text" style="display: none;">
</form>
'Web Programing Link > JSP' 카테고리의 다른 글
이클립스에서 building workspace sleeping 무한반복될 때 (3) | 2018.01.03 |
---|---|
컴퓨터 옮겨서 프로젝트 폴더 전체 복사할때 (0) | 2017.12.18 |
Unable to compile class for JSP: (0) | 2017.12.15 |
session.invalidate(); (0) | 2017.12.06 |
Html - form태그 내 onsubmit 이벤트 (2) | 2017.12.06 |