jquery Implements DIV replication

Source: Internet
Author: User

Page Source:

</div>
<div class= "Condition" >
<select class= "Select" >
<c:foreach var= "field" items= "${fields}" >
<option class= "option" id= "${field}" ></option>
</c:forEach>
</select> <input name= "text" type= "text" class= "Searchvalue"/>
<button class= "Add" >+</button>
<button class= "Remove" >-</button>
</div>

The effect is as follows:

Click "+" button, copy a "condition" div, click "-" button to remove the current Div,jquery implementation code:

$ (document). Ready (
function () {
Add options
$ (". Add"). Click (function () {
var Sourcediv = $ (this). parent ();//Gets the node to replicate
var duplicate = Sourcediv.clone (true);
Empty the text
Duplicate.find ("input[name= ' text ']") [0].value = "";
Duplicate.insertafter (SOURCEDIV);
});

Delete button
$ (". Remove"). Click (function () {
var Sourediv = $ (this). parent ();//Gets the node to remove
If only one is not removed
if ($ (". Condition"). Length! = 1) {
Sourediv.remove ();
}
});

});

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.