本文介绍了如何写一个jQuery选择多:均衡器单前pression?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个快速的问题。我怎样写一个jQuery选择前pression多:EQ()选择?我想下去DOM树但每一个希望是不统一。这里是我的作品:

I have a quick question. How do I write a jQuery selector expression with multiple :eq() selectors? I want to go down the DOM tree but every hope isn't uniform. Here is what I have that works:

$('div:eq(0)').find('div:eq(1)').find('div:eq(5)')

但下面不工作:

$('div:eq(0) div:eq(1) div:eq(5)')

有没有写没有所有的发现是一个更优雅的方式?

Is there a more elegant way to write it without all the "find"'s?

推荐答案

我相信你可以做到以下几点,它应该返回所有匹配的DOM元素:

I believe that you could do the following and it should return all dom elements that match:

 $('div:eq(0), div:eq(1), div:eq(5)')

然后,您可以遍历返回的结果,希望这有助于。

You could then iterate over the results returned, hope this helps.

这篇关于如何写一个jQuery选择多:均衡器单前pression?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 14:01