반응형
$("input[type='text']").on("keyup", function() {
$(this).val($(this).val().replace(/[^0-9]/g,""));
//다음 input 이동
if (this.value.length == this.maxLength) {
$(this).next('input[type="text"]').focus();
}
});
반응형
'퍼블리셔 > jquery' 카테고리의 다른 글
touchmove로 touchstart 제어하기 (0) | 2020.12.03 |
---|---|
input[type="file] custom (0) | 2020.09.25 |
attr과 mouseenter/mouseleave/click 같이 쓰기 (0) | 2019.12.12 |
animate 다중클릭/중복클릭/다클릭 방지 (0) | 2019.11.14 |
<a href="#id">로 이동 부드럽게 하기 (0) | 2019.11.12 |