计算 DOM 中某个点之前匹配模式的元素数量
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我想这就是我一直在寻找的东西。稍后将进行彻底测试:
I think this is what I was looking for. Will test thoroughly in a bit:
.nextAll() 也许?
http://api.jquery.com/nextAll/
.nextAll() maybe?
http://api.jquery.com/nextAll/
我会查看选择器 .siblings() 和 .parents() 以及 .context 来满足这个特定的要求。
I would look at the selectors .siblings() and .parents() along with .context to meet this specific requirement.
你的问题不精确,所以这是我最好的猜测
如果你想收集词汇上出现在
d
之前的所有font[color=]
元素,那么你不能用纯选择器。您需要迭代更大的匹配集Your question is imprecise so this is my best guess
If you mean to collect all
font[color=]
elements that appear lexically befored
then you can't do this with a pure selector. you'll need to iterate over a larger matching set