jQuery:选择属性大于值的所有元素
我知道要过滤具有名为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用
.filter()
的函数重载来执行此操作,例如这:You can do this using the function overload of
.filter()
, like this:请小心,如果您正在使用整数,请确保您使用的是
parseInt()
。Be careful, if you are playing with integers make sure you are using
parseInt()
.解决方案是 jQuery.filter():
The solution is jQuery.filter():
对于 ES6 箭头函数
For ES6 arrow function