JavaScript jquery - nextUntil

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript jquery - nextUntil相关的知识,希望对你有一定的参考价值。

/******** next until > ****************/
$.fn.nextUntil = function(expr) {
var match = [];

// We need to figure out which elements to push onto the array
this.each(function(){
// Traverse through the sibling nodes
for( var i = this.nextSibling; i; i = i.nextSibling ) {
// Make sure that we're only dealing with elements
if ( i.nodeType != 1 ) continue;

// If we find a match then we need to stop
if ( jQuery.filter( expr, [i] ).r.length ) break;

// Otherwise, add it on to the stack
match.push( i );
}
});

return this.pushStack( match, arguments );
};

/******** < next until ****************/

以上是关于JavaScript jquery - nextUntil的主要内容,如果未能解决你的问题,请参考以下文章

jquery获取一组相同标签内没有class的标签

hdoj3746(kmp算法的nex数组求最小循环节)

将 as3 btn 代码转换为 Javascript

在每个函数中定位 nex div

如何通过 Intent 转移到 nex Activity

hdoj3336(kmp算法next数组的应用)