我可以使用 CSS3 选择器根据子元素进行选择吗?

发布于 2024-12-05 05:50:02 字数 434 浏览 1 评论 0原文

我需要选择一个

元素,该元素具有带有特定类的嵌套

并不总是

的子代,而可能是孙代。例如:

<p>some text<span><a href="#" class="myclass f5">link</a></span></p>

如果

元素有一个 且内部任何地方都有类 f5 ,我需要选择该元素。

I need to select a <p> element that has a nested <a> with a specific class.

The <a> is not always a child of the <p> and may instead be a grandchild. For example:

<p>some text<span><a href="#" class="myclass f5">link</a></span></p>

I need to select the <p> element if it has an <a> with the class f5 anywhere inside.

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

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

发布评论

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

评论(1

你如我软肋 2024-12-12 05:50:02

这对于 css 选择器来说是不可能的(没有什么比父选择器更好的了)。

也许你可以使用 javascript 解决这个问题 - 例如,在 jquery 中,你应该使用 $('p:has(a.f5)') 获取段落(然后你可以自由地 < code>.addClass() 或直接在此元素上设置 .css())。

编辑:
您可能还想看看 SO 上的其他问题(下次:提问前搜索):

this isn't possible with a css selector (theres nothing like a parent-selector).

maybe you can work around this with javascript - in jquery, for example, you should get your paragraphs with $('p:has(a.f5)') (and then you're free to .addClass() or set .css() on this elements directly).

EDIT::
you might also want to take a look at this other questions on SO (and next time: search before you ask):

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