我有一个充满 DOM 元素的网页,我想从该页面中取出所有 h3,并在页面顶部彼此相邻地显示它们。问题是——这可能吗?
<h3>I want</h3>
There are tons of other content between them so...
<h3>These headers</h3>
Keep in mind the're separated by many DOM elements...
<h3>To be displayed</h3>
Luckily no other h3s between them...
<h3>Inline next to</h3>
Thank you for trying to help :)
<h3>Each other </h3>
这是我尝试使用绝对定位的jsfiddle,但我很确定采用这种方式会很困难(边距):
我需要代码至少适用于 IE7及更高版本,并且我不能使用任何 JS/jQuery(不过,使用 jQuery 会很容易)。当然我也不能编辑 html 本身。
任何想法,或不可能?;)