inputbox에서 입력이 끝나면 다음 inputbox로 이동하기

By | 3월 24, 2009

function goInputBox2(){
 var idx1 = document.getElementById('corpNum1');
 var idx2 = document.getElementById('corpNum2');
 if(idx1.value.length == 3){
  idx2.focus();
 }
}

<input id="'corpNum1" type="text" onkeyup="goInputBox2()"/>

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments