私は次のHTMLを持っています:
<div class="test">
First
<p></p>
Second
<p></p>
Third
</div>
Second
この場合、どのように単語を取得できますか?
私は次のHTMLを持っています:
<div class="test">
First
<p></p>
Second
<p></p>
Third
</div>
Second
この場合、どのように単語を取得できますか?
jQuery contents()をeq()と一緒に使用できます。
var second = $('.test').contents().filter(function() {
return this.nodeType == Node.TEXT_NODE;
}).eq(1).text();