<script>
// 포커스 자동이동 스크립트
function focus_chk(obj,tar,num){
var openerFmNm = eval("document.all."+tar+"");
if (obj.value.length == num){
openerFmNm.focus();
}else if(obj.value.length != num ){
obj.focus();
}
}
</script>
<table>
<tr>
<td class="td_head" height="22">전화 번호</td>
<td class="nor_w">
<input type="text" size="3" maxlength="3" name="ph" class="inbox" onkeyup="focus_chk(this,'ph[1]',3)">
<input type="text" size="4" maxlength="4" name="ph" class="inbox" onkeyup="focus_chk(this,'ph[2]',4)">
<input type="text" size="4" maxlength="4" name="ph" class="inbox">
</td>
</tr>
</table>
TAEYO.PE.KR 펌
반응형
':::: 개발 :::: > ::: JSCRIPT :::' 카테고리의 다른 글
라디오 버튼 체크 함수 (0) | 2011.09.01 |
---|---|
jQuery 웹 주소 & $ 딸라 충돌 오류 방지 (0) | 2011.04.22 |
jQuery 아이프레임 부모창 제어하기 (0) | 2011.03.31 |
이미지 사이즈 팝업 (0) | 2010.07.14 |
기능 많은 미디어 재생기 (0) | 2010.05.13 |
각종 체크 스크립트 함수 모음 (0) | 2010.01.12 |
[본문스크랩] 여러가지 자바스크립트 소스모음 (0) | 2009.12.28 |
[본문스크랩] 자바스크립트 페이지이동,포워딩 (0) | 2009.12.28 |