autofill input field with value of another input field

后端 未结 1 1871
失恋的感觉
失恋的感觉 2020-12-15 12:51

I\'m going crazy about this. I found a plain JavaScript solution for my problem:



        
相关标签:
1条回答
  • 2020-12-15 13:27
    $("#EmailAddress").keyup(function(){
        $("#Username").val(this.value);
    });
    

    See a working demo

    0 讨论(0)
提交回复
热议问题