0

我创建了一个模板 html 块,允许我在单击“添加”按钮时复制该块。这是通过append()

name='category[]'追加后如何更改输入字段的值?

例如:

$('#add').click(function() {
   $('#LinesContainer').append($('#templatePlan').html());
   var getCategory = $("#selectCategory").val();
   // How to put getCategory value into category[] field?
});

选择类别并单击 + 按钮

<div>
  <select id="selectCategory">
      <option value="New">New</option>
      <option value="Old">Old</option>
  </select>
  <input value="+" id="add" type="button"/>
</div>

模板块

<div id="templatePlan" style="display:none;">
 <div style='padding: 5px; border: 1px solid white; background-color: #FFA86F;'>
  <select name="selectType[]"> 
       <option>Consumer</option>
       <option>Business</option>
  </select>
  <input name='category[]' type='hidden' value='' />
 </div>
</div>


<div id="LinesContainer"> </div>

我不确定这是否是实现它的一种巧妙方法,还有其他更好的方法吗?

4

2 回答 2

1

只需选择它。我建议使用.clone()模板而不是innerHTML,这将使选择更容易。否则,您可能有多个类别输入,并且必须使用最后一个。

$('#add').click(function() {
   $('#templatePlan').children('div').clone().appendTo('#LinesContainer')
    .find('input name="category[]"').val($("#selectCategory").val());
});
于 2013-08-05T14:38:22.967 回答
0
    //after
     var getCategory = $("#selectCategory").val();

//To set the actual input
    $('input[type="hidden"]').val(getCategory);
//or to update the attribute rather
 $('input[type="hidden"]').attr('name', 'category[' + getCategory + ']');
于 2013-08-05T14:37:58.987 回答