1.forEach() 是JS遍歷數組的方法html
var arr=[1,2,3]; arr.forEach(function(val,index,arr){ // var 爲數組中當前的值 // index 爲當前值得下標 // arr 爲原數組 arr[index] = 2*val; }) console.log(arr); //結果:修改了原來數組,爲每一個數乘以2
forEach() 方法用於調用數組的每一個元素,並將元素傳遞給回調函數。jquery
<button onclick="numbers.forEach(myFunction)">點我</button> <p>數組元素總和:<span id="demo"></span></p> <script> var sum = 0; var numbers = [65, 44, 12, 4]; function myFunction(item) { sum += item; demo.innerHTML = sum; } </script>
注意: forEach() 對於空數組是不會執行回調函數的。數組
在jquery中,遍歷對象和數組,常常會用到$().each和$.each(),兩個方法。兩個方法是有區別的。dom
$().each:在dom處理上面用的較多。若是頁面有多個input標籤類型爲checkbox,對於這時用$().each來處理多個checkbook,例如:函數
$("input[name='ch']").each(function(i){ if($(this).attr('checked')==true) { //一些操做代碼 }
回調函數是能夠傳遞參數,i就爲遍歷的索引。this
$.each() :遍歷一個數組spa
$.each([{"name":"limeng","email":"xfjylimeng"},{"name":"hehe","email":"xfjylimeng"},function(i,n) { alert(「索引:"+i,"對應值爲:"+n.name); });
參數i爲遍歷索引值,n爲當前的遍歷對象.code
var arr1 = [ "one", "two", "three", "four", "five" ];
$.each(arr1, function(){
alert(this);
});
輸出:one two three four five
var arr2 = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
$.each(arr2, function(i, item){
alert(item[0]);
});
輸出:1 4 7
var obj = { one:1, two:2, three:3, four:4, five:5 };
$.each(obj, function(key, val) {
alert(obj[key]);
});
輸出:1 2 3 4 5htm
參考連接:http://www.frontopen.com/1394.html https://www.cnblogs.com/longailong/p/6409172.html對象