标签: javascript jquery html
在jQuery中按属性查找元素很简单:
$(parentElement).find('[attribute]');
如何找到不具有特定属性的元素?
答案 0 :(得分:9)
这就是:not()的原因。
:not()
尝试,
$(parentElement).find(':not([attribute])');
答案 1 :(得分:1)
您可以使用:not,但filter最有可能更快:
:not
filter
$(parentElement).filter(function() { return !$(this).attr('attribute'); });