search

Home  >  Q&A  >  body text

javascript - How to assign variable values ​​to input boxes dynamically created by jQuery

jQuery dynamically replaces the input input box created. The original intention is to replace the original td column with a td column with input. I want to retain the values ​​​​in the original column into the replaced input input box, and all the values ​​​​can be obtained. The input box can also be replaced, but this value cannot be saved. Please ask God to solve it. Thank you! !

function edit(obj){
            var id = $(obj).parent().prev().prev().prev().prev().prev().html();
            var tab1 = $(obj).parent().prev().prev().prev().prev().html();
            var tab2 = $(obj).parent().prev().prev().prev().html();
            var tab3 = $(obj).parent().prev().prev().html();
            var tab4 = $(obj).parent().prev().html();
            for(var i = 1;i < 5;i++){
                $(obj).parent().parent().children().eq(i).replaceWith("<td><input type='text'/></td>");
                $(obj).parent().parent().children().eq(i).val("12");
                // $(obj).parent().parent().children().eq(i).html("12");
            }

I want to replace the values ​​of tab1, 2, 3, and 4 with tabi and assign them in a loop. But it has never worked, and the one commented at the end does work. . .

我想大声告诉你我想大声告诉你2769 days ago542

reply all(1)I'll reply

  • ringa_lee

    ringa_lee2017-05-19 10:24:23

    var temp = "<td><input type='text' value='" + $(obj).parent().parent().children().eq(i).val() + "'/></td>";
    $(obj).parent().parent().children().eq(i).replaceWith(temp);

    reply
    0
  • Cancelreply