2011-04-10 48 views
1

時返回 包含所有先前的兄弟姐妹直至 但不包括一個由 的.prevUntil()選擇器相匹配的新的jQuery對象。; 元素從 closest兄弟姐妹到farthest返回。反向jQuery的()prevUntil()

如何扭轉從farthest的順序closest,或許,有沒有JS功能反轉由.prevUntil()返回的對象?

回答

2

我會這樣說:

Array.prototype.slice.call($('.selector').prevUntil('.new_selector')).reverse() 
+0

這個解決我的問題 $ .fn.reverse = [] .reverse;順便說一句,謝謝... – theHack 2011-04-10 07:56:37