计算 DOM 中某个点之前匹配模式的元素数量

发布于 2024-09-16 04:45:22 字数 120 浏览 4 评论 0原文

我在 jQuery 对象的 DOM d 中有一个元素,我想计算该元素之前与 font[color=#ff6600] 匹配的元素数量。我可以使用 CSS 选择器来实现此目的吗?

I have an element in the DOM d in a jQuery object and I'd like to count the number of elements matching font[color=#ff6600] before the element. Is there a CSS selector I can use for this?

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

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

发布评论

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

评论(4

神也荒唐 2024-09-23 04:45:22

我想这就是我一直在寻找的东西。稍后将进行彻底测试:

$(d).parents().andSelf().prevAll().find('font[color=#ff6600]')

I think this is what I was looking for. Will test thoroughly in a bit:

$(d).parents().andSelf().prevAll().find('font[color=#ff6600]')
浊酒尽余欢 2024-09-23 04:45:22

我会查看选择器 .siblings().parents() 以及 .context 来满足这个特定的要求。

I would look at the selectors .siblings() and .parents() along with .context to meet this specific requirement.

失去的东西太少 2024-09-23 04:45:22

你的问题不精确,所以这是我最好的猜测

$(d).prevAll('font[color=#ff6600]').length

如果你想收集词汇上出现在 d 之前的所有 font[color=] 元素,那么你不能用纯选择器。您需要迭代更大的匹配集

Your question is imprecise so this is my best guess

$(d).prevAll('font[color=#ff6600]').length

If you mean to collect all font[color=] elements that appear lexically before d then you can't do this with a pure selector. you'll need to iterate over a larger matching set

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