<input type="text" placeholder="숫자만 입력" class="numberOnly">
//input 숫자만 입력
$(".numberOnly").on("keyup", function(event) {
if (event.which && (event.which > 47 && event.which < 58 || event.which == 8)) {
}else{
alert('숫자만 입력해주세요.');
$(this).val($(this).val().replace(/[^0-9]/g,""));
}
});
참고사이트
https://mytory.net/archives/697
'javascript' 카테고리의 다른 글
window width 따라 이벤트 발생시키기 (0) | 2020.04.03 |
---|---|
[fullpage.js] 스크롤 했을 때 needpopup 사라지게 하기 (0) | 2020.04.03 |
인스타그램 api 이미지 불러올 때 크기 설정 (0) | 2020.04.03 |
파일 다운로드 file download (0) | 2020.04.03 |
퀵메뉴 일정 top까지만 움직이게 하기 (0) | 2020.04.03 |
댓글