我有一个div #someDiv,可以创建一个新元素并使#someDiv成为其子级吗?基本上,我想包装一个新的元素#someDiv。我该怎么做呢?

$("#someDiv").appendTo($("<div id='newParent'></div>"));
// The intent is to move #someDiv into the new container
// The new container may or may not be in the same
// position in the DOM as #someDiv

感谢您的提示!

干杯,
〜ck在圣地亚哥

最佳答案

$("#something").wrap("<div id='newParent'></div>");

10-08 06:22