如何在
中设置隐藏字段数组的VALUE $('#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
答案 0 :(得分:1)
您的ID不能是数组,您的名字可以是..
因此,您的ID应该是hids
,而您的名称应该是hifld[]
,然后分配值
$("#hids").val(vl);
答案 1 :(得分:0)
请尝试使用.val():
$("#hids[]").val( v1 )