jquery 中 $.map 的使用方法

小小工匠發表於2018-08-15

$.map(data,function(item,index){return XXX})

遍歷data陣列中的每個元素,並按照return中的計算方式 形成一個新的元素,放入返回的陣列中

var b = $.map( [55,1,2], function( item,index ) {  return {  "label": item,  "value": index  }});
                        
                        alert(b[0].label +"  "+ b[0].value);

輸出為  55 0

 

[55,1,2]是一個陣列,按照return的條件,,,,function 中的item,為55時,index也就是陣列的下標就為0   

$.map()括號中就相當於一個迴圈

迴圈多條資料,把資料定義為b

 

var array = [0, 1, 52, 97];
array = $.map(array, function(a, index) {
  return [a - 45, index];
}); 
輸出為:
 
[-45, 0, -44, 1, 7, 2, 52, 3] 

 

相關文章