jquery选择有2个属性值
我想使用 jquery 使用其属性值选择一个 html 元素。
我使用 $('td[i=0]')
并且它工作正常。如果我想一起使用 2 个属性怎么办?
例如,我想选择具有 i="0" 和 j="2" 属性的 td 元素。
I want to select an html element with jquery using its attribute value.
I use $('td[i=0]')
and it works correctly. What if i want to use 2 attribute together.
For example, I want to select td element with attributes i="0" and j="2" .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以只附加它们,例如:
这几乎适用于任何选择器,将它们添加在一起不带空格可以使其检查同一元素上的属性。
You can just append them, e.g.:
This works for pretty much any selector, adding them together without a space makes it check for the attribute on the same element.
使用 $('td[i=o]' 'td[j=2]') ?
Use
$('td[i=o]' 'td[j=2]')
?jQuery 或选择器:
jQuery 和选择器:
jQuery OR Selector:
jQuery AND Selector: