gpt4 book ai didi

javascript - 如何在 DIV 中选择带有类的项目?

转载 作者:IT王子 更新时间:2023-10-29 02:37:52 26 4
gpt4 key购买 nike

我有以下 HTML:

<div id="mydiv">
<div class="myclass"></div>
</div>

我希望能够使用选择器选择内部 div,但特定于 mydiv 容器。我如何使用 jQuery 实现这一点?

最佳答案

尝试:

$('#mydiv').find('.myclass');

JS Fiddle demo .

或者:

$('.myclass','#mydiv');

JS Fiddle demo .

或者:

$('#mydiv .myclass');

JS Fiddle demo .

引用资料:


很好学习find()文档:

The .find() and .children() methods are similar, except that the latter only travels a single level down the DOM tree.

关于javascript - 如何在 DIV 中选择带有类的项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6933763/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com