javascript - How to assign variable values ​​to input boxes dynamically created by jQuery
我想大声告诉你
我想大声告诉你 2017-05-19 10:22:23
0
1
514

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. . .

我想大声告诉你
我想大声告诉你

reply all(1)
左手右手慢动作
var temp = "<td><input type='text' value='" + $(obj).parent().parent().children().eq(i).val() + "'/></td>";
$(obj).parent().parent().children().eq(i).replaceWith(temp);
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template