jQuery用來動態新增元素的方法,其原理為將新的元素加在指定區塊的最後
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//add text after the last child | |
$("#clickId").click(function () { | |
$("#showId").append('hello'); | |
}); |
.prepend()
將新的元素加在指定區塊的最前
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//add text before the last child | |
$("#clickId").click(function () { | |
$("#showId").prepend('hello'); | |
}); |
.before() 及 .after()
同樣是將新元素加入指定區塊的前後,.after()與.append()不同的是 .append()是將元素加入指定區塊內的最後,而.after()則是加入指定區塊外的最後,同理可推得.before()
如下圖所示:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- .appent() result--> | |
<div id="showBlock"> | |
Input:<input type="text" name="test[]" /> | |
hello | |
</div> | |
<!-- .after() result--> | |
<div id="showBlock"> | |
Input:<input type="text" name="test[]" /> | |
</div> | |
hello | |
<!-- .prepend() result--> | |
<div id="showBlock"> | |
hello | |
Input:<input type="text" name="test[]" /> | |
</div> | |
<!-- .before() result--> | |
hello | |
<div id="showBlock"> | |
Input:<input type="text" name="test[]" /> | |
</div> |
將A元素的值加入B元素中
實作範例:
參考文件:
[1] http://api.jquery.com/category/manipulation/dom-insertion-inside/
沒有留言:
張貼留言