返回的新jQuery对象
包含所有以前的兄弟姐妹
但不包括与
.prevUntil()
选择器;的
元素按以下顺序返回
closest
与farthest
的同级。
如何将farthest
的顺序反转为closest
,或者,是否存在任何js函数来反转.prevUntil()
返回的对象?
最佳答案
我会说:
Array.prototype.slice.call($('.selector').prevUntil('.new_selector')).reverse()