使用jquery添加新的父div树
我是jquery的新手,并找到解决方案,
Child 1 Contents Child 2 Contents
我想在
之后创建新的父div元素,并使用jquery将所有来自此父级的子元素包含到新父级,因此结果html如下所示:
Child 1 Contents Child 2 Contents
如何使用jquery解决这个问题?
jQuery的wrapInner应该可以解决这个问题:
$('#parent').wrapInner('');