七零部落格
思则大道至简,疑则谜团重重!
思则大道至简,疑则谜团重重!
有段时间没写什么了, 打算把jquery中的比较常用的数组处理方法汇总一下
1
2
3
4
5
6
7
8
|
var arr = [ 'javascript' , 'php' , 'java' , 'c++' , 'c#' , 'perl' , 'vb' , 'html' , 'css' , 'objective-c' ];
$.each(arr, function (key, val) {
// firebug console
console.log( 'index in arr:' + key + ", corresponding value:" + val);
// 如果想退出循环
// return false;
});
|
1
2
3
4
5
6
7
8
9
|
var temp = [];
temp = $.grep(arr, function (val, key) {
if (val.indexOf( 'c' ) != -1)
return true ;
// 如果[invert]参数不给或为false, $.grep只收集回调函数返回true的数组元素
// 反之[invert]参数为true, $.grep收集回调函数返回false的数组元素
}, false );
console.dir(temp);
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//1.6之前的版本只支持数组
temp = $.map(arr, function (val, key) {
//返回null,返回的数组长度减1
if (val === 'vb' ) return null ;
return val;
});
console.dir(temp);
//1.6开始支持json格式的object
var obj = {key1: 'val1' , key2: 'val2' , key3: 'val3' };
temp = $.map(obj, function (val, key) {
return val;
});
console.dir(temp);
|
1
2
3
|
//返回元素在数组中的位置,0为起始位置,返回-1则未找到该元素
console.log($.inArray( 'javascript' , arr));
|
1
2
3
4
5
6
7
8
9
|
var frontEnd = [ 'javascript' , 'css' , 'html' ],
backEnd = [ 'java' , 'php' , 'c++' ];
// 这种方式会修改第一个参数, 即frontEnd数组
temp = $.merge(frontEnd, backEnd);
console.dir(temp);
console.dir(frontEnd);
// 可以用下面的方式来避免对原数组的影响
// $.merge($.merge([], frontEnd), backEnd);
|
1
2
3
4
5
6
7
8
9
|
// $.unique只支持DOM元素数组,去除重复DOM元素,不支持其他类型数组(String或者Number)
// 获得原始的DOM数组,而不是jQuery封装的
var divs = $( 'div' ).get();
// 增加几个class为dup的div
divs = divs.concat($( 'div.dup' ).get());
console.log( "before unique:" + divs.length);
divs = $.unique(divs);
console.log( "after unique:" + divs.length);
|
1
2
3
4
5
|
//首先什么是类数组对象?jQuery官网上用divs = getElementsByTag('div')来做例子
//这个divs有类似数组的一些方法比如length,通过[index]方式获取元素等
//然后通过$.makeArray(divs)使它转为数组,就可以用数组的其他功能
//比如reverse(), pop()等
|
1
2
|
//跟makeArray一样,相当的不常用,一般情况可以忽略
|
本文参考Mr.Think的blog,在此感谢分享