jQuery wrapAll() 方法

实例

用一个 <div> 元素包裹所有的 <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. $("button").click(function(){
  8. $("p").wrapAll("<div></div>");
  9. });
  10. });
  11. </script>
  12. <style>
  13. div{background-color: yellow;}
  14. </style>
  15. </head>
  16. <body>
  17. <p>这是一个段落</p>
  18. <p>这是另一个段落</p>
  19. <button>用一个 div 元素包裹所有 p 元素</button>
  20. </body>
  21. </html>

定义与用法

wrapAll() 方法将指定的 HTML 元素包裹所有选定元素。


语法

  1. $(selector).wrapAll(wrappingElement)
参数描述
wrappingElement必填。指定要包裹选定元素的 HTML 元素

值可以为:

  • HTML 元素
  • jQuery 对象
  • DOM 元素

更多实例

使用 document.createElement() 创建一个元素,并将包裹所有选定元素

分类导航