0

有没有办法查看一个层是否有一个具有特定类的子层。

所以在我的html中我有;

html

<div class='tab'>
   <div class='not-loaded'></div>
</div>

JS/JQ

$('.tab').contains('not-loaded'); //to return a Boolean OR
$('.tab').classExist('not-loaded'); //to return a Boolean

基本上我想检查我的标签是否已经加载了动态 html 内容。

4

2 回答 2

2

使用长度测试find

if($('.tab').find('.not-loaded').length)

或使用has

if($('.tab:has(".not-loaded")').length)
于 2013-10-07T04:05:16.090 回答
0

您还可以在选择器中使用 :first-child。

$('.tab :first-child').hasClass('not-loaded');
于 2013-10-07T04:06:48.953 回答