以下に示す html には、同じクラス名と構造を持つこのメイン div があります。私cxfeeditem feeditem
のthere are many divs
質問は、クラス名で始まるすべてのdiv cxfeeditem feeditem
、子の値を取得する方法です。
1. クラス名 cxfeeditem feeditem
2.class=feeditemtimestamp
3.cxcommentsフィードアイテムコメント
4.cxfeeditem フィードアイテム
<div class="cxfeeditem feeditem">
<span class="feeditemtext cxfeeditemtext">
This is my blog
</span>
<a class="feeditemtimestamp">Yesterday 2:13PM</a>
<div class="cxcomments feeditemcomments">
These are my comments
</div>
<div class="cxfeeditem1 feeditem1">
My comments for the comment
</div>
</div>
EDIT : 次のような値を警告したい出力:
This is my blog
Yesterday 2:13PM
These are my comments
My comments for the comment
次のことを試しましたが、null が返されます。
$("div.cxfeeditem.feeditem").each(function() {
alert($(this).children('span.feeditemtext.cxfeeditemtext').html());
alert($(this).children('a.feeditemtimestamp').html());
alert($(this).children('div.cxcomments.feeditemcomments').html());
alert($(this).children('div.cxfeeditem.feeditem').html());
break;
});