我如何在Jquery中“找到”?

时间:2010-05-14 19:11:46

标签: javascript jquery

$("#start").find(divs where class=desc).show()

<div id="start">
<div class="desc" style="display:none;">I am visible.</div>
</div>

我该怎么做?

3 个答案:

答案 0 :(得分:8)

就像jQuery()函数一样,find()将CSS选择器作为参数。

$("#start").find("div.desc").show();

find相当于上下文搜索,因此上述内容与:

相同
$("div.desc", "#start").show();

http://api.jquery.com/find/

答案 1 :(得分:1)

尝试:

$("#start").find("div.desc").show()

答案 2 :(得分:-2)

$("#start.desc").show();

访问http://jsfiddle.net/9cg8D/了解工作示例。