250x250
Notice
Recent Posts
Recent Comments
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

진스

숫자 키패드 입력시 다음 input으로 이동 본문

JavaScript

숫자 키패드 입력시 다음 input으로 이동

입방정 2024. 1. 17. 17:18
728x90
              <div class="inp_sel">
                <input type="tel" placeholder="4자리" maxlength="4"  class="inputs">
              </div>
             
              <div class="inp_sel">
                <input type="tel" placeholder="4자리" maxlength="4"  class="inputs">
              </div>
<script>
$(function() {
    $(".inputs").on('keyup', function () {
        var charLimit = $(this).prop("maxlength");
        if ($(this).val().length >= charLimit) {
            $(this).next('.inputs').focus();
            return false;
        }
    });
});
</script>
728x90
Comments