append()方法將指定的內(nèi)容插入每個選定元素的末尾(作為最后一個子元素)。
要將內(nèi)容插入所選元素的開頭,請使用prepend()方法。
插入內(nèi)容:
$(selector).append(content)
使用函數(shù)插入內(nèi)容:
$(selector).append(function(index, html))
在所有段落中添加一些文本內(nèi)容:
$("button").click(function(){ $("p").append("Hello world"); });測試看看?/?
將HTML插入到所有段落:
$("button").click(function(){ $("p").append("<b>Hello world</b>"); });測試看看?/?
本示例使用document.createTextNode()創(chuàng)建文本節(jié)點并將其插入到所有<p>元素:
$("button").click(function(){ $("p").append(document.createTextNode("Hello world")); });測試看看?/?
使用函數(shù)插入內(nèi)容:
$("button").click(function(){ $("p").append(function(i){ return "<b>該p元素具有索引 " + i + ".</b>"; }); });測試看看?/?
參數(shù) | 描述 |
---|---|
content | 指定在每個選定元素末尾插入的內(nèi)容(可以包含HTML標記) 可能的值:
|
function(index, html) | 指定函數(shù),該函數(shù)返回要插入的內(nèi)容
|