jquery选择有2个属性值

发布于 2024-09-16 21:17:50 字数 163 浏览 2 评论 0原文

我想使用 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 技术交流群。

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

发布评论

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

评论(3

聚集的泪 2024-09-23 21:17:50

您可以只附加它们,例如:

('td[i=0][j=2]')

这几乎适用于任何选择器,将它们添加在一起不带空格可以使其检查同一元素上的属性。

You can just append them, e.g.:

('td[i=0][j=2]')

This works for pretty much any selector, adding them together without a space makes it check for the attribute on the same element.

魂牵梦绕锁你心扉 2024-09-23 21:17:50

使用 $('td[i=o]' 'td[j=2]') ?

Use $('td[i=o]' 'td[j=2]') ?

寻找我们的幸福 2024-09-23 21:17:50

jQuery 或选择器:

$("td[i=0], td[i=2]")

jQuery 和选择器:

$("td[i=0][i=2]") 

jQuery OR Selector:

$("td[i=0], td[i=2]")

jQuery AND Selector:

$("td[i=0][i=2]") 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文