jquery选择一个类中的元素

时间:2010-04-20 04:28:03

标签: jquery jquery-selectors

我想在div中选择一个像这样的

<div class="response content">
  Disapproved Bank Mandiri<br><br>
  <p>
    <a class="showlist" href="#">Back to list?</a>
  </p>
</div>

这样做的jquery是什么?

4 个答案:

答案 0 :(得分:46)

带有“响应”和“内容”类的div中的任何锚:

$('.response.content a')

或者只有具有“showlist”类别的锚点:

$('.response.content a.showlist')

答案 1 :(得分:11)

如果您需要DIV上的两个课程:

$("div.response.content a.showlist");

如果没有,

$("div.response a.showlist");

要了解有关jQuery选择器基本用法的更多信息,请访问http://api.jquery.com/category/selectors/

答案 2 :(得分:3)

另一种解决方法是使用jQuery .find()

以下是使用find()选择div中所有元素的示例,其中包含类&#34;响应内容&#34;。

jQuery('.response.content').find('a');

这也是访问selectors vs. .find()

主题的有用帖子

答案 3 :(得分:0)

您可以使用:

$('.response').find('a');

$('.response').find('.showlist');