【发布时间】:2011-12-27 13:23:01
【问题描述】:
我想根据 HR 标签将我从 Web 服务收到的文章(= HTML 内容)拆分到不同的 DIV 中。
我用一个例子来解释,这是我从服务中得到的:
<p>This is an article bla bla</p> <hr/> <p>this is the next page of the article blabla ...</p>
我想根据 HR-tag 制作:
<div><p>This is an article bla bla</p></div>
<div><p>this is the next page of the article blabla ...</p></div>
我尝试了不同的想法,但不起作用。我如何使用 Javascript 或 JQuery(或使用其他方法 ;-))来做到这一点?
【问题讨论】:
标签: javascript jquery html split