admin管理员组文章数量:1345017
I have a 3 input fields with +Add More Button. I want to add more fields when +Add More button is pressed.
When New field will create there should be a remove button to remove newly added row and new row can be create by using +Add More button.
For that I am using following html and jQuery code but can't get the idea how to add / remove fields !
html and jQuery Code
<div id="tab_logic" class="after-add-more">
<div class="col-md-4">
<div class="form-group">
<label class="control-label">Logger Name</label>
<input maxlength="200" type="text" class="form-control" placeholder="Enter Logger Name" name="lg_name[]" />
</div>
</div>
<div class="col-md-3">
<div class="form-group">
<label class="control-label">Logger Serial Number</label>
<input maxlength="200" type="text" class="form-control" placeholder="Enter Serial Number" name="lg_sl[]" />
</div>
</div>
<div class="col-md-3">
<div class="form-group">
<label class="control-label">Modem Serial Number</label>
<input maxlength="200" type="text" class="form-control" placeholder="Enter Modem Serial Number" name="lg_md_sl[]" />
</div>
</div>
<div class="remove-button"></div>
</div>
<div class="col-md-2">
<div class="form-group change">
<label for=""> </label><br/>
<a class="btn btn-success add-more">+ Add More</a>
</div>
</div>
<div class="more-feilds"></div>
$(document).ready(function() {
$(".add-more").click(function(){
var html = $("#tab_logic").html();
$(".more-feilds").append(html);
});
$("body").on("click",".remove",function(){
$(this).parents("#tab_logic").remove();
});
});
Update :
I have updated my html and jquery code. Now I have +Add More button. When I pressed the button it's adding 3 new input fields which I want. But I want to add remove button to each newly created 3 fields to remove it.
How can I do this ?
I have a 3 input fields with +Add More Button. I want to add more fields when +Add More button is pressed.
When New field will create there should be a remove button to remove newly added row and new row can be create by using +Add More button.
For that I am using following html and jQuery code but can't get the idea how to add / remove fields !
html and jQuery Code
<div id="tab_logic" class="after-add-more">
<div class="col-md-4">
<div class="form-group">
<label class="control-label">Logger Name</label>
<input maxlength="200" type="text" class="form-control" placeholder="Enter Logger Name" name="lg_name[]" />
</div>
</div>
<div class="col-md-3">
<div class="form-group">
<label class="control-label">Logger Serial Number</label>
<input maxlength="200" type="text" class="form-control" placeholder="Enter Serial Number" name="lg_sl[]" />
</div>
</div>
<div class="col-md-3">
<div class="form-group">
<label class="control-label">Modem Serial Number</label>
<input maxlength="200" type="text" class="form-control" placeholder="Enter Modem Serial Number" name="lg_md_sl[]" />
</div>
</div>
<div class="remove-button"></div>
</div>
<div class="col-md-2">
<div class="form-group change">
<label for=""> </label><br/>
<a class="btn btn-success add-more">+ Add More</a>
</div>
</div>
<div class="more-feilds"></div>
$(document).ready(function() {
$(".add-more").click(function(){
var html = $("#tab_logic").html();
$(".more-feilds").append(html);
});
$("body").on("click",".remove",function(){
$(this).parents("#tab_logic").remove();
});
});
Update :
I have updated my html and jquery code. Now I have +Add More button. When I pressed the button it's adding 3 new input fields which I want. But I want to add remove button to each newly created 3 fields to remove it.
How can I do this ?
Share edited Jan 10, 2017 at 16:33 shibbir ahmed asked Jan 10, 2017 at 16:18 shibbir ahmedshibbir ahmed 1,0242 gold badges19 silver badges34 bronze badges 8-
2
instead of
$(".change").html
use$(".change").append
to add more elements..html
will replace the existing elements in the selected area. – ADyson Commented Jan 10, 2017 at 16:20 - however, $(".change").append will add a new button to all rows every time a new row is added. Maybe better to have the markup there already but hidden, and just use this code to show it. – ADyson Commented Jan 10, 2017 at 16:25
-
Hello guys.. I have updated my code using
append
function. Now It's adding new row with 3 input fields. How can I add a remove button to each newly created row to remove it ? – shibbir ahmed Commented Jan 10, 2017 at 16:34 - "fields" not "feilds" :-) – ADyson Commented Jan 10, 2017 at 16:34
-
$("body").on("click",".remove",function(){ $(this).parents("#tab_logic").remove(); });
will always remove the first row no matter which Remove is pressed. HTML IDs must be unique. – ADyson Commented Jan 10, 2017 at 16:36
2 Answers
Reset to default 5you can use the below logic. this will clone the first div.after-add-more and add the remove button on the html.
P.S : i have removed the id to avoid duplicate ids in html.ID attribute is not required for this functionality, hope that is not an issue with you.
$(document).ready(function() {
$("body").on("click",".add-more",function(){
var html = $(".after-add-more").first().clone();
// $(html).find(".change").prepend("<label for=''> </label><br/><a class='btn btn-danger remove'>- Remove</a>");
$(html).find(".change").html("<label for=''> </label><br/><a class='btn btn-danger remove'>- Remove</a>");
$(".after-add-more").last().after(html);
});
$("body").on("click",".remove",function(){
$(this).parents(".after-add-more").remove();
});
});
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="after-add-more">
<div class="col-md-4">
<div class="form-group">
<label class="control-label">Logger Name</label>
<input maxlength="200" type="text" class="form-control" placeholder="Enter Logger Name" name="lg_name[]" />
</div>
</div>
<div class="col-md-3">
<div class="form-group">
<label class="control-label">Logger Serial Number</label>
<input maxlength="200" type="text" class="form-control" placeholder="Enter Serial Number" name="lg_sl[]" />
</div>
</div>
<div class="col-md-3">
<div class="form-group">
<label class="control-label">Modem Serial Number</label>
<input maxlength="200" type="text" class="form-control" placeholder="Enter Modem Serial Number" name="lg_md_sl[]" />
</div>
</div>
<div class="col-md-2">
<div class="form-group change">
<label for=""> </label><br/>
<a class="btn btn-success add-more">+ Add More</a>
</div>
</div>
</div>
Use .append()
instead of .html()
. The .append function insert content to the end of each element in the set of matched elements and .html will replace the existing elements.
$(document).ready(function() {
$(".add-more").click(function(){
var html = $("#tab_logic").html();
$(".after-add-more").after(html);
$(".change").append("<label for=''> </label><br/><a class='btn btn-danger remove'>- Remove</a>");
});
$("body").on("click",".remove",function(){
$(this).parents("#tab_logic").remove();
});
});
本文标签: javascriptHow to add more fields using jQueryStack Overflow
版权声明:本文标题:javascript - How to add more fields using jQuery? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743771478a2536202.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论