Skip to content

Instantly share code, notes, and snippets.

@romeoh
Created February 6, 2013 10:21
Show Gist options
  • Save romeoh/4721678 to your computer and use it in GitHub Desktop.
Save romeoh/4721678 to your computer and use it in GitHub Desktop.
한글 유효성.
M('#userID').on('blur', function(evt, mp){
var strValue = mp.val();
var id_pattern = new RegExp('[^a-zA-Z0-9]'); //아이디 패턴검사 정규식
//아이디 값이 없거나 아이디가 유효한게 아니면
if ( id_pattern.test(strValue) ) {
alert('아이디를 영문자와 숫자로 입력해 주세요.');
mp.val('');
return;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment