如何在 jQuery 中一起使用 :not 和 find ()
How do I use :not and find () together in jQuery
有没有可能把:not和find()放在一起,我试了很多方法都没有用。
我基本上需要 select 遍历特定 div 没有 tabindex 属性的所有子项。
$('#div1').find(':not([tabindex])').addClass('red')
.red{color:red}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id='div1'>
<span>red</span>
<span tabindex='1'>123</span>
</div>
使用$('#div1').find(':not([tabindex])')
有没有可能把:not和find()放在一起,我试了很多方法都没有用。 我基本上需要 select 遍历特定 div 没有 tabindex 属性的所有子项。
$('#div1').find(':not([tabindex])').addClass('red')
.red{color:red}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id='div1'>
<span>red</span>
<span tabindex='1'>123</span>
</div>
使用$('#div1').find(':not([tabindex])')