How to synchronize two text box form values?

前端 未结 6 647
旧时难觅i
旧时难觅i 2021-02-05 04:56

Hi all i am new to jQuery. Suppose I have two HTML text boxes. How can I make it happen that if I write in text box A then same value goes to textbox B and if I write in B then

6条回答
  •  不知归路
    2021-02-05 05:25

    A slightly more efficient way than the most upvoted answer is:

    var $inputs = $(".copyMe");  
    $inputs.keyup(function () {
         $inputs.val($(this).val());
    });
    

    http://css-tricks.com/snippets/jquery/keep-text-inputs-in-sync/

提交回复
热议问题