这是我的HTML:
<div id="extraPerson">
<div class="controls controls-row">
<input class="span3" placeholder="First Name" type="text" name="firstname2">
<input class="span3" placeholder="Last Name" type="text" name="lastname2">
<select class="span2" name="gender2"><option value="Male">Male</option><option value="Female">Female</option></select>
...ETC
</div>
</div>
<a href="#" id="addRow"><i class="icon-plus-sign icon-white"></i> Add another family member</p></a>
这是我的jquery:
<script>
$(document).ready(function(){
$('#addRow').click(function(){
$("#extraPerson").slideDown();
});
})
</script>
#extraPerson隐藏在css中。
单击链接时添加div。但是,我希望每次单击链接时继续添加相同的div。我该怎么做呢?如果将数字附加到表单输入名称,则更好。例如firstname3,firstname4等。
答案 0 :(得分:33)
尝试这种方式: -
创建模板extraPersonTemplate
并使用它进一步构建。添加容器到您的内容部分。
<div class="extraPersonTemplate">
<div class="controls controls-row">
<input class="span3" placeholder="First Name" type="text" name="firstname2">
<input class="span3" placeholder="Last Name" type="text" name="lastname2">
<select class="span2" name="gender2">
<option value="Male">Male</option>
<option value="Female">Female</option>
</select>
</div>
</div>
<div id="container"></div>
$(document).ready(function () {
$('<div/>', {
'class' : 'extraPerson', html: GetHtml()
}).appendTo('#container'); //Get the html from template
$('#addRow').click(function () {
$('<div/>', {
'class' : 'extraPerson', html: GetHtml()
}).hide().appendTo('#container').slideDown('slow');//Get the html from template and hide and slideDown for transtion.
});
})
function GetHtml() //Get the template and update the input field names
{
var len = $('.extraPerson').length;
var $html = $('.extraPersonTemplate').clone();
$html.find('[name=firstname]')[0].name="firstname" + len;
$html.find('[name=lastname]')[0].name="lastname" + len;
$html.find('[name=gender]')[0].name="gender" + len;
return $html.html();
}
.extraPersonTemplate {
display:none;
}
答案 1 :(得分:5)
我提出了自己的解决方案。很多评论,但随意问。
$(document).ready(function(){
$('#addRow').click(function(){
// get the last person and html html
var $person = $('.person').last();
var person = $person.html();
// find the number
var index = person.indexOf('firstname');
var number = parseInt(person.substring(index+9,1));
var next = number+1;
// replace the number
// for firstname
person.replace('firstname'+number, 'firstname'+next);
// for lastname
person.replace('lastname'+number, 'lastname'+next);
// for gender
person.replace('gender'+number, 'gender'+next);
// insert the new person after the last one
$person.after($('<div class="person">'+person+'</div>'));
// get the new person
var $new = $('.person').last();
// hide it
$new.hide();
// reset the values
$new.find('input, select').val('');
// fade it in
$new.slideDown();
});
})
我喜欢@PSL使用模板的事实,可能是一个更好的更简单的解决方案。请注意,您需要添加代码以更新其中的人员编号...
答案 2 :(得分:0)
Pevara和PSL脚本均无法正常工作
所有新行的名称/ id与第一个相同,因此以后无法在脚本中从中获取值
.substring(index+9,1)
应该更正为.substring(index+9,index+10)
但甚至比next都总是== 2作为$ person.html();尚未真正改变
这是3个解决方案选项: https://www.jqueryscript.net/form/jQuery-Plugin-To-Dynamically-Add-More-Form-Fields-czMore.html
https://www.codexworld.com/add-remove-input-fields-dynamically-using-jquery/
https://www.sanwebe.com/2013/03/addremove-input-fields-dynamically-with-jquery