请告诉我如何实现这一点
<div class="row"> <h2><asp:Literal ID="categoryTitle" runat="server"></asp:Literal></h2> <ul class="tree js-catTree" id="treeContainer" runat="server"></ul> </div>
谢谢
replaceWith()
$('.row').replaceWith(function() { return $('ul',this); });
Working Demo