我试图遍历一个包含各种元素的 div。问题是,我的示例中显示了相同的结果。
这是示例代码的小提琴:http: //jsfiddle.net/JLtCN/
所以我的示例的 html 结构如下所示:
<div class="somediv">
<span>hello</span>
<img src="someimg.jpg" width="20" height="20" />
<p></p>
<div><p>some text in a paragraph inside a div</p></div>
<h2>Some h2 tekst</h2>
<table>
<tbody>
<tr>
<td>some text in a table cell</td>
</tr>
</tbody>
</table>
</div>
我的目标是获取 html 标签内的所有内容。像这样,
tagtype: <span>, text: 'hello',
tagtype: <p>, text: 'some text in a paragraph inside a div'
etc.
有谁知道如何正确地做到这一点?