JSLite - 陣列物件操作


如有疑問歡迎到這些地方交流,歡迎加入JSLite.io組織團體共同開發!

最大(小)值

//顺带小教程
//获取最大值最小值
var a=[1,2,3,5];
console.log(Math.max.apply(null, a));//最大值
console.log(Math.min.apply(null, a));//最小值

var a=[1,2,3,[5,6],[1,4,8]];
var ta=a.join(",").split(",");//转化为一维数组
console.log(Math.max.apply(null,ta));//最大值
console.log(Math.min.apply(null,ta));//最小值

Array.remove

這個是在Array原型物件上擴充的。

[1,5,6].remove(1)//⇒ [5, 6]

$.intersect

陣列交集

$.intersect([1,2,3,"asdkjf"],[2,3,6,"asdkjf"])
//⇒ [2, 3, "asdkjf"]

$.unique

刪除陣列中重複元素。

$.unique([1,2,12,3,2,1,2,1,1,1,1]) //⇒ [1, 2, 12, 3]
var arr = $("#box").concat($("#box")) //两个一模一样的数组
$.unique(arr) //去重

$.sibling

根據型別取得節點物件屬性的集合 (node,type)

$.sibling($("input"),"type")    //⇒ ["text", "button", "checkbox"]   
$.sibling($("input"),"tagName") //⇒ ["INPUT"]

$.inArray

搜尋陣列中指定值並傳回它的索引(如果沒有找到則傳回-1)。

var arr = [ 4, "Pete", 8, "John" ];
$.inArray("John", arr);     //⇒ 3
$.inArray(4, arr);          //⇒ 0
$.inArray("David", arr);    //⇒ -1
$.inArray("Pete", arr, 2);  //⇒ -1

$.map

透過遍歷集合中的節點對象,透過函數傳回一個新的數組,nullundefined 將會被過濾掉。

$.map({"w":1,"c":2,"j":3},function(idx,item){
     return item
}); 
//⇒ ["w", "c", "j"]

$.each

通用例遍方法,可用來例遍物件和陣列

$.each(["a", "b", "c"], function(index, item){
    console.log("item %d is: %s", index, item)
})

$.grep

使用篩選函數過濾陣列元素。

$.grep( [0,1,2], function(n,i){
  return n != 0;
});

$.parseJSON

JSON.parse 方法相同,接受一個標準格式的JSON 字串,並傳回解析後的JavaScript對象。

#