coding/short code

javascript 한글만 입력가능

100a 2019. 6. 4. 15:44
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');">