$.map(data,function(item,index){return XXX}) 遍歷data數組中的每個元素,並按照return中的計算方式 形成一個新的元素,放入返回的數組中 輸出為 55 0 [55,1,2]是一個數組,按照return的條件,,,,function 中的item,為5 ...
$.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]