Created
February 6, 2013 10:21
-
-
Save romeoh/4721678 to your computer and use it in GitHub Desktop.
한글 유효성.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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