假设我的代码中有以下 DOM 元素:
<div id="test">
<div id="t2">
Hi I am
<b>Gopi</b>
and am 20 years old.
<p id="div2">
<button onclick="alert('lol')">Check</button>
</p>
</div>
</div>
假设我想遍历 div#t2 的内容。
$("#t2").children()
给了我<b>
和<p>
标签。
那么我应该如何Hi I am
访问它以将值作为包含“ ”、“ <b>....</b>
”、“ and am 20 years old.
”、“的数组来获取<p>.....</p>
?