检查父元素是否包含使用jQuery的某些子元素

前端之家收集整理的这篇文章主要介绍了检查父元素是否包含使用jQuery的某些子元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<div id="example">
  <div id="test"></div>
</div>

<div id="another">Blah</div>

我想设置$(‘#另一个)。hide(),但是只有#example包含一个称为#test的子元素,这是可能的吗?好像是这样的

@R_403_323@

使用长度
if ($('#example').find('#test').length) {
    // found!
}
原文链接:https://www.f2er.com/jquery/182526.html

猜你在找的jQuery相关文章