jQuery选择器:选择两个元素,以及之间的所有元素

前端之家收集整理的这篇文章主要介绍了jQuery选择器:选择两个元素,以及之间的所有元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个UL的负载,每个都有一个唯一的ID。

给定两个ID,选择两个相应的LI以及所有LI之间的最佳方式是什么?

谢谢!

解决方法

http://api.jquery.com/nextUntil/

Given a selector expression that represents a set of DOM elements,the .nextUntil() method searches through the successors of these elements in the DOM tree,stopping when it reaches an element matched by the method’s argument. The new jQuery object that is returned contains all following siblings up to but not including the one matched by the .nextUntil() argument.

If the selector is not matched or is not supplied,all following siblings will be selected; in these cases it selects the same elements as the .nextAll() method does when no filter selector is provided.

As of jQuery 1.6,A DOM node or jQuery object,instead of a selector,may be passed to the .nextUntil() method.

The method optionally accepts a selector expression for its second argument. If this argument is supplied,the elements will be filtered by testing whether they match it…

原文链接:https://www.f2er.com/jquery/182789.html

猜你在找的jQuery相关文章