我有一个包含一个字段的div,当我点击添加按钮时,我想要添加到该页面。
java.util.ArrayList
每次单击添加按钮时都会显示一组新字段。
我遇到的问题是它设置了所有添加的相同名称的字段。
// the div that contains the field
<div class="dependent-row" style="visibility: hidden;">
<div class="row" style="border:1px solid #ccc; padding: 5px; margin: 10px 0;">
<label>First Name</label>
<input type="text" value="" class="firstName dependentfield">
</div>
</div>
我知道我需要在我点击添加按钮时添加的字段,但无法弄清楚如何做到这一点。
如果我点击两次添加按钮,这里是渲染的html:
var index = 0;
$("#add-dependent-btn").on('click', function(e) {
e.preventDefault();
index++;
$(this).after($('.dependent-row').html());
$('.firstName').attr('name', 'fields[dependents][new'+index+'][fields][firstName]');
});
答案 0 :(得分:2)
这基本上就是你这样做的。
var rowObject = null;
function addRow(lineNumber) {
if (rowObject != null) {
var newRowObject = rowObject.clone();
var label = "Label " + lineNumber;
var inputName = 'fields[dependents][new' + lineNumber + '][fields][firstName]';
var myLabel = newRowObject.find('label');
myLabel.text(label);
var myInput = newRowObject.find('input.firstName.dependentfield');
myInput.val('');
myInput.attr('name', inputName);
$('div.dependent-row').append(newRowObject);
}
}
$(function() {
rowObject = $('div.dependent-row > div.row').clone();
$('#add-dependent-btn').click(function() {
var totalRow = $('div.dependent-row > div.row').length;
addRow(totalRow + 1);
});
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="add-dependent-btn">
Add row
</button>
<div class="dependent-row">
<div class="row" style="border:1px solid #ccc; padding: 5px; margin: 10px 0;">
<label>First Name</label>
<input type="text" value="" class="firstName dependentfield">
</div>
</div>
&#13;