jquery 查找具有特定类的孩子

lc8prwob  于 2022-12-22  发布在  jQuery
关注(0)|答案(3)|浏览(127)

我正在尝试编写代码来搜索具有特定类的div的所有子元素。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中的文本?

ryevplcw

ryevplcw1#

$(this).find(".bgHeaderH2").html();

$(this).find(".bgHeaderH2").text();
qyzbxkaa

qyzbxkaa2#

根据您的评论,修改此内容:

$( '.bgHeaderH2' ).html (); // will return whatever is inside the DIV

致:

$( '.bgHeaderH2', $( this ) ).html (); // will return whatever is inside the DIV

有关选择器的详细信息:https://api.jquery.com/category/selectors/

jobtbby3

jobtbby33#

我不确定我是否正确理解了你的问题,但是这个div是否是其他div的子项应该没有关系。你可以使用下面的代码简单地从bgHeaderH2类的所有div中获取文本:

$(".bgHeaderH2").text();

相关问题