jQuery – find一个特定的类的孩子
我正在编写代码来search所有的孩子有一个特定的类的股利。 DIV没有ID。 这是我将要使用的HTML。
<div class="outerBUBGDiv"> <div class="innerBUBGDiv"> <div class="bgHeaderH2">Technology Group</div> <div class="bgBodyDiv"> <div align="center"> <img height="33" border="0" width="180" src="/heading.jpg"/> /////other stuff here///// </div> </div> </div>
任何想法如何我可以得到与bgHeaderH2类的div内的文字。
提前致谢。
评论补充说,最初没有解释得很好)
基于你的评论,moddify这个:
$( '.bgHeaderH2' ).html (); // will return whatever is inside the DIV
至:
$( '.bgHeaderH2', $( this ) ).html (); // will return whatever is inside the DIV
有关select器的更多信息: http : //docs.jquery.com/Selectors
$(this).find(".bgHeaderH2").html();
要么
$(this).find(".bgHeaderH2").text();
我不知道我是否正确理解你的问题,但是如果这个div是其他div的孩子,这应该不重要。 您可以简单地通过使用以下代码从类bgHeaderH2的所有div中获取文本:
$(".bgHeaderH2").text();