我正在使用 jQuery。我有以下 html 片段:
<h1>Main Title</h1>
<h2>One header</h2>
<p>some text</p>
<p>more text</p>
<ul><li>a list</li></ul>
<h2>Another header</h2>
<a href="######">one link</a>
<h3>ddd</h3>
<p>eee</p>
<h2>Header 3<h2>
<p>This is a Paragraph</p>
我需要获取每个 h2 元素之间的内容,以便执行以下操作:
First Section text
some text
more text
Second section text
one link
ddd
eee
Third section text
This is a Paragraph
我读过这个资源: http ://www.tutorialspoint.com/jquery/jquery-selectors.htm
但仍然无法弄清楚如何做我需要的。
提前致谢!