Javascript
[Javascript] 정규식 한글 입력 방지
innocent_k
2015. 11. 3. 17:41
check = /[ㄱ-ㅎ|ㅏ-ㅣ|가-힣]/;
if(check.test(값)) alert('한글입니다.');