帮助理解 JQuery 属性等于选择器

发布于 2024-09-24 23:14:29 字数 240 浏览 3 评论 0原文

我想在

中找到

这些两个选择器可以工作:

$('#myid td[role=foo]')

$('#myid .two')

但是这个却不能,为什么?

$('#myid .two td[role=foo]')

I want to find a <td role="foo" class="one two three four"> within a <div id="myid">

These two selectors work:

$('#myid td[role=foo]')

$('#myid .two')

But this one doesn't, why?

$('#myid .two td[role=foo]')

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

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

发布评论

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

评论(3

再可℃爱ぅ一点好了 2024-10-01 23:14:29

因为选择器字符串中的空格是后代选择器

您需要这样做:

$('#myid td.two[role=foo]')

按照您的方式,您正在搜索 元素,这些元素是 后代。两个。

Because a space in a selector string is a descendant-selector.

You would need to do:

$('#myid td.two[role=foo]')

The way you had it, you were searching for <td role="foo"> elements that are a descendant of .two.

枯寂 2024-10-01 23:14:29

因为您的选择器:

$('#myid .two td[role=foo]')

正在寻找td[role=foo].two的元素id #myid 的元素。

您正在使用后代选择器,而不是寻找 td[role=foo].two 我认为这就是您想要的。

Because your selector:

$('#myid .two td[role=foo]')

is looking for a td[role=foo] within an element of class .two within an element of id #myid.

You're using descendant selectors, rather than looking for td[role=foo].two which, I think, is what you want.

风柔一江水 2024-10-01 23:14:29

你想要:

$("#myid td[role=foo].two")...

这个选择器:

$('#myid .two td[role=foo]')

意思是:找到ID为“myid”的元素。从中找到“二”类的所有后代。从这些元素中查找所有具有值为“foo”的角色属性的后代 元素。

You want:

$("#myid td[role=foo].two")...

This selector:

$('#myid .two td[role=foo]')

means: find the element with ID "myid". From it find all descendants with a class of "two". From those elements find all descendants <td> elements that have a role attribute with a value of "foo".

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