jQuery 文檔操作 prepend() 方法
jQuery 文檔操作 prepend() 方法
prepend() 方法在被選元素的開頭(仍位于內(nèi)部)插入指定內(nèi)容。
提示:prepend() 和 prependTo() 方法作用相同。差異在于語(yǔ)法:內(nèi)容和選擇器的位置,以及 prependTo() 無(wú)法使用函數(shù)來(lái)插入內(nèi)容。
1. 語(yǔ)法
$(selector).prepend(content)
參數(shù) | 描述 |
---|---|
content | 必需。規(guī)定要插入的內(nèi)容(可包含 HTML 標(biāo)簽)。 |
2. 范例
在 p 元素的開頭插入內(nèi)容:
$(".btn1").click(function(){ $("p").prepend("<b>Hello world!</b>"); });
3. 使用函數(shù)來(lái)附加內(nèi)容
使用函數(shù)在被選元素的開頭插入指定的內(nèi)容。
語(yǔ)法
$(selector).prepend(function(index,html))
參數(shù) | 描述 |
---|---|
function(index,html) |
必需。規(guī)定返回待插入內(nèi)容的函數(shù)。
|
相關(guān)文章
- jQuery 語(yǔ)法
- jQuery 效果 動(dòng)畫
- jQuery 獲得內(nèi)容和屬性
- jQuery 遍歷
- jQuery AJAX load() 方法
- jQuery 參考手冊(cè) 選擇器
- jQuery 參考手冊(cè) 屬性操作
- jQuery 參考手冊(cè) Ajax
- jQuery 參考手冊(cè) DOM 元素方法
- jQuery 事件 blur() 方法
- jQuery 事件 click() 方法
- jQuery 事件 isDefaultPrevented() 方法
- jQuery 事件 preventDefault() 方法
- jQuery 事件 keypress() 方法
- jQuery 事件 live() 方法
- jQuery 事件 mouseenter() 方法
- jQuery 事件 mousemove() 方法
- jQuery 事件 mouseover() 方法
- jQuery 事件 mouseup() 方法
- jQuery 事件 unload 屬性