所以我有类似
的东西<div>
<!-- other stuff then-->
<button>Hey</button>
</div>
我想做(使用Javascript / JQuery)
<div>
<!-- other stuff then-->
<div class="bw">
<button>Hey</button>
</div>
</div>
这可能吗?我在网上找不到任何有关材料的东西......但是,我是一个完全是JS的菜鸟,所以我可能没有使用正确的术语。谢谢!
答案 0 :(得分:4)
您可以使用.wrap()
:
$("button").wrap("<div class='bw'></div>");
You can test it here,要包装多个元素,请使用.wrapAll()
,此处为a full list of the wrapping functions。