jQuery的each()方法用于遍歷集合中的每個元素,并對每個元素執行指定的函數。
語法:
$.each(collection, function(index, value){
// 執行的代碼
});
參數說明:
collection:要遍歷的集合(數組、對象、類數組對象等)。
function(index, value):對每個元素執行的函數。其中index是元素的索引,value是元素的值。
示例:
var arr = [1, 2, 3, 4, 5];
$.each(arr, function(index, value){
console.log("索引:" + index + ",值:" + value);
});
輸出:
索引:0,值:1
索引:1,值:2
索引:2,值:3
索引:3,值:4
索引:4,值:5
另外,each()方法也可以用于遍歷對象的屬性。
var obj = {name: "Alice", age: 20};
$.each(obj, function(key, value){
console.log("屬性:" + key + ",值:" + value);
});
輸出:
屬性:name,值:Alice
屬性:age,值:20