使用jQuery通过缺少属性查找子元素

时间:2014-04-15 07:28:08

标签: javascript jquery html

在jQuery中按属性查找元素很简单:

$(parentElement).find('[attribute]');

如何找到具有特定属性的元素?

2 个答案:

答案 0 :(得分:9)

这就是:not()的原因。

尝试,

$(parentElement).find(':not([attribute])');

答案 1 :(得分:1)

您可以使用:not,但filter最有可能更快:

$(parentElement).filter(function() {
    return !$(this).attr('attribute');
});