一只萌萌小番薯
不要使用jquery ...使用普通的javascriptvar a = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15];var b = a.splice(0,10);//a is now [11,12,13,14,15];//b is now [1,2,3,4,5,6,7,8,9,10];您可以循环执行此操作以获得所需的行为。var a = YOUR_ARRAY;while(a.length) { console.log(a.splice(0,10));}这一次将给您10个元素...如果您说15个元素,您将得到1-10,即您想要的11-15。
白衣非少年
只需循环遍历数组,将其剪接起来直到全部消耗完为止。var a = ['a','b','c','d','e','f','g'] , chunkwhile (a.length > 0) { chunk = a.splice(0,3) console.log(chunk)}输出[ 'a', 'b', 'c' ][ 'd', 'e', 'f' ][ 'g' ]