3초기억력

JavaScript - 숫자 입력 체크 본문

플밍_기타

JavaScript - 숫자 입력 체크

잠수콩 2008. 11. 17. 15:58
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.




// 숫자 입력 체크
function checkNumberFormat(number) {
 t = number.value ;
 
 for(i=0;i<t.length;i++)
 if (t.charAt(i)<'0' || t.charAt(i)>'9') {
  alert("숫자만 입력해주세요.");
  number.value="";
  number.focus();
  return false;
 }
 return true;
}
Comments