0

如何在里面设置隐藏字段数组的值

   $('#addbutton').click(function () {
        var txt = "<tr id='divs'><td><input type='hidden' id='hids[]' name='hifld' /> </td></tr> ";
        $('#systemconfig').append(txt);

        var dd = $("#hid").attr("value");
        var inthidden = parseInt(dd);
        var vl = parseInt(dd, '0') + 1;
        $("#hids[]").attr("value", vl); // this is not working
4

2 回答 2

1

你的 id 不能是数组,你的名字可以是..

所以你的 id 应该hids和你的名字一样hifld[],然后分配像这样的值

$("#hids").val(vl);
于 2012-11-05T11:07:44.667 回答
0

尝试 .val() 代替:

$("#hids[]").val( v1 )
于 2012-11-05T11:07:21.247 回答