키보드 입력 시의 `keycode` 를 활용해서 숫자값일 경우만 체크 ```javascript function onlyNumberKey(keyCode) { return /[0-9]|\./.test(String.fromCharCode(keyCode)) } document.getElementById(selector).addEventListener('keydown', function(e) { var isNumberKey = onlyNumberKey(e.keyCode); console.log(isNumberKey); }); ```
'자바스크립트 > 유용한' 카테고리의 다른 글
비밀번호 특수문자 숫자 영문 조합 체크 (0) | 2022.08.24 |
---|---|
입력받은 문자열에서 특수문자, 알파벳, 한글 제외하고, 숫자만 추출하여 return (0) | 2022.08.24 |
hash를 이용한 URL 페이지 제어 (0) | 2022.08.24 |