我知道要过滤具有属性attrName的属性,该属性具有值attrValue,我这样做:

filter("[attrName='attrValue']")

但是看着http://api.jquery.com/category/selectors/文档,我看不到选择所有元素的选项。 attrName> attrValue

这项工作会吗
   filter("[attrName>'attrValue']")

最佳答案

您可以使用 .filter() 函数重载来做到这一点,如下所示:

.filter(function() {
  return $(this).attr("attrName") > "someValue";
})

09-11 19:02