jQuery prepend() 方法

实例

在所有 <p> 元素的开头插入内容:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("#btn1").click(function(){
  8. $("p").prepend("<b>Prepended text</b>. ");
  9. });
  10. $("#btn2").click(function(){
  11. $("ol").prepend("<li>Prepended item</li>");
  12. });
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. <p>This is a paragraph.</p>
  18. <p>This is another paragraph.</p>
  19. <ol>
  20. <li>List item 1</li>
  21. <li>List item 2</li>
  22. <li>List item 3</li>
  23. </ol>
  24. <button id="btn1">Prepend text</button>
  25. <button id="btn2">Prepend list item</button>
  26. </body>
  27. </html>

定义与用法

prepend() 方法在选定元素的开头插入指定的内容。

提示:要在选定元素的末尾插入内容,请使用 append() 方法。


语法

  1. $(selector).prepend(content,function(index,html))
参数描述
content必填。指定要插入的内容(可以包含HTML 标记)

值可以为:

  • HTML 元素
  • jQuery 对象
  • DOM 元素
function(index,html)可选。指定返回要插入的内容的函数
  • index - 返回元素在集合中的索引位置
  • html - 返回所选元素的当前 HTML

更多实例

使用 prepend() 方法插入内容

使用函数预编内容

分类导航