我有一个带标题的html页面。我想使用javascript或任何本机库对标题下的内容(html)进行分组。我怎样才能做到这一点? 示例如下
<div>
<h2>Main</h2>
<p> Content goes here</p>
<img src="someimg.jpg"/>
<h2>Main2</h2>
<p> Content goes here</p>
<img src="someimg.jpg"/>
<h2>Main3</h2>
<p> Content goes here</p>
<img src="someimg.jpg"/>
</div>
输出应为
<div>
<div>
<h2>Main</h2>
<p> Content goes here</p>
<img src="someimg.jpg"/>
</div>
<div>
<h2>Main2</h2>
<p> Content goes here</p>
<img src="someimg.jpg"/>
</div>
<div>
<h2>Main3</h2>
<p> Content goes here</p>
<img src="someimg.jpg"/>
</div>
</div>
答案 0 :(得分:3)
试试这个:
FileString.split(" ")
$("h2").each(function(){
$(this).nextUntil("h2").addBack().wrapAll("<div class='wrapper'>");
});
.wrapper{
border-bottom:1px solid red;
}
答案 1 :(得分:0)
这应该做你需要的事情
<div>
<h2 style="margin-bottom: 0;">Main</h2>
<p style="margin-top: 0;"> Content goes here</p>
<img src="someimg.jpg"/>
<h2 style="margin-bottom: 0;">Main2</h2>
<p style="margin-top: 0;"> Content goes here</p>
<img src="someimg.jpg"/>
<h2 style="margin-bottom: 0;">Main3</h2>
<p style="margin-top: 0;"> Content goes here</p>
<img src="someimg.jpg"/>
</div>
&#13;