jQuery:选择属性大于值的所有元素

发布于 2024-08-28 00:59:46 字数 356 浏览 5 评论 0原文

我知道要过滤具有名为 attrName 且具有值 attrValue 的属性的元素:

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

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

这是否有效

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

I know that to filter an element with an atttribute called attrName which has value attrValue I do:

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

but looking at the docs http://api.jquery.com/category/selectors/ I can't see an option to select all elements s.t. attrName>attrValue

Will this work

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

故乡的云 2024-09-04 00:59:46

您可以使用 .filter() 的函数重载来执行此操作,例如这:

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

You can do this using the function overload of .filter(), like this:

.filter(function() {
  return $(this).attr("attrName") > "someValue";
})
送君千里 2024-09-04 00:59:46

请小心,如果您正在使用整数,请确保您使用的是 parseInt()

$("selector").filter(function() {
    return parseInt($(this).attr("my-attr")) > 123;
});

Be careful, if you are playing with integers make sure you are using parseInt().

$("selector").filter(function() {
    return parseInt($(this).attr("my-attr")) > 123;
});
等你爱我 2024-09-04 00:59:46

解决方案是 jQuery.filter()

$("selector").filter(function() {
    return  $(this).attr("my-attr") > 123;
});

The solution is jQuery.filter():

$("selector").filter(function() {
    return  $(this).attr("my-attr") > 123;
});
濫情▎り 2024-09-04 00:59:46

对于 ES6 箭头函数

$("selector").filter((index, el) => {
    return parseInt($(el).attr("attrName")) > 123;
});

For ES6 arrow function

$("selector").filter((index, el) => {
    return parseInt($(el).attr("attrName")) > 123;
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文