jQuery prepend() 方法
实例
在所有 <p> 元素的开头插入内容:
<!DOCTYPE html><html><head><script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script><script>$(document).ready(function(){$("#btn1").click(function(){$("p").prepend("<b>Prepended text</b>. ");});$("#btn2").click(function(){$("ol").prepend("<li>Prepended item</li>");});});</script></head><body><p>This is a paragraph.</p><p>This is another paragraph.</p><ol><li>List item 1</li><li>List item 2</li><li>List item 3</li></ol><button id="btn1">Prepend text</button><button id="btn2">Prepend list item</button></body></html>
定义与用法
prepend() 方法在选定元素的开头插入指定的内容。
提示:要在选定元素的末尾插入内容,请使用 append() 方法。
语法
$(selector).prepend(content,function(index,html))
| 参数 | 描述 |
|---|---|
| content | 必填。指定要插入的内容(可以包含HTML 标记) 值可以为:
|
| function(index,html) | 可选。指定返回要插入的内容的函数
|