function onlyKorean(inputId) {
var str=document.getElementById(inputId).value;
for (i = 0; i < str.length; i++) {
if (!((str.charCodeAt(i) > 0x3130 && str.charCodeAt(i) < 0x318F) || (str.charCodeAt(i) >= 0xAC00 && str.charCodeAt(i) <= 0xD7A3))) {
alert("한글만 입력해 주세요");
document.getElementById(inputId).value='';
}
}
}
<input type="text" id="inputkorean" onkeyup="javascript:return onlyKorean('inputkorean');">
'coding > short code' 카테고리의 다른 글
javascript 모바일일때 모바일페이지로 이동 (0) | 2020.03.30 |
---|---|
javascript 이메일 형식 체크하기 (0) | 2019.06.11 |
javascript 영문자와 특수문자 (-_)만 입력가능 (0) | 2019.06.11 |
javascript 텍스트 Input 숫자만 입력가능 (0) | 2019.06.11 |
javascript 숫자만 입력 가능 (0) | 2019.06.04 |