我如何在jQuery中使用:not和find()

时间:2016-06-15 08:06:32

标签: jquery jquery-selectors

是否有可能:不和找到()在一起,我在很多方面尝试但是徒劳无功。 我基本上需要选择迭代特定div的所有子项没有tabindex 属性。

1 个答案:

答案 0 :(得分:1)



$('#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>
&#13;
&#13;
&#13;

使用$('#div1').find(':not([tabindex])')