在 <div> 元素中包裹所有 <p> 元素:
$("button").click(function(){ $("p").wrapAll("<div></div>"); });
wrapAll() 方法使用指定的 HTML 元素来包裹所有被选元素。
$(selector).wrapAll(wrappingElement)
可能的值:
通过 DOM 创建新元素 如何使用 document.createElement() 来创建元素,并用它包裹所有被选元素。