Count length of one input field and print it in another with Gravity Forms and Javascript

前端 未结 1 1478
自闭症患者
自闭症患者 2021-01-27 09:42

I am using Gravity Forms for Wordpress and I am trying to figure out how to count the length of characters a user types into one of my input boxes and print that number to anoth

相关标签:
1条回答
  • 2021-01-27 10:08

    Add an eventListener to the first input. In this case, whenever the user presses and releases a key, the length of the input will be displayed in the second input.

    <form>
        <input name="input_10" id="input_1_10" type="text" value="" class="small" tabindex="1">
        <input name="input_2" id="input_1_2" type="text" value="" class="medium" tabindex="2">
    </form>
    
    <script>
        var bank = document.getElementById("input_1_10");
        var countNum = document.getElementById("input_1_2");
        bank.addEventListener("keyup", function(e) {
            countNum.value = bank.value.length;
        });
    </script>
    
    0 讨论(0)
提交回复
热议问题