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