반응형
갑자기 스크립트를 체크하다가 숫자, 영어, 특수기호, 한글을 체크 해야 하는 부분을
찾았다. 나중에 유효하게 사용할 것 같아서..ㅎ
function check_key(value) {
var char_ASCII = value;
//alert(char_ASCII);
//숫자
if (char_ASCII >= 48 && char_ASCII <= 57 )
return 1;
//영어
else if ((char_ASCII>=65 && char_ASCII<=90) || (char_ASCII>=97 && char_ASCII<=122))
return 2;
//특수기호
else if ((char_ASCII>=33 && char_ASCII<=47) || (char_ASCII>=58 && char_ASCII<=64)
|| (char_ASCII>=91 && char_ASCII<=96) || (char_ASCII>=123 && char_ASCII<=126))
return 4;
//한글
else if (0xAC00 <= char_ASCII && char_ASCII <= 0xD7A3)
return 3;
else
return 0;
}
반응형
'프로그램&코딩' 카테고리의 다른 글
AJAX 예제 80가지 (0) | 2009.04.03 |
---|---|
MSSQL 함수 사용 및 예문들 ( 자주 사용하는 ) (0) | 2009.03.30 |
[코딩] 브라우저별 IE6 IE7 IE8 확인 프로그램 (0) | 2009.03.27 |
[2.0] 'System.Web.Mail.MailMessage'은(는) 사용되지 않습니다. (0) | 2009.03.27 |
[2.0] 'System.Configuration.ConfigurationSettings.AppSettings' is obsolete.... (0) | 2009.03.27 |
[2.0] System.Web.UI.Page.RegisterStartupScript(string, string).. (0) | 2009.03.27 |