我理解使用.last()或:last-child等來獲取元素的最後一個兄弟,但是如何獲得最內部的元素text()相同的標籤名稱,而不使用任何類或ID?jquery找到最後一個嵌套元素
例如:
$(body).find('div').text();
<div>
<div>
<div>
<div>Get this text</div>
</div>
</div>
<div>
<div>
<div>
<div>
<div>And get this text</div>
</div>
</div>
</div>
</div>
</div>
當我使用了一個循環返回文本上每個div都使用$。每次,我返回爲每個div的文字文本的複製()。
在此先感謝