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