如何使用jQuery迭代JavaScript对象的属性?

使用该each()方法可以迭代JavaScript对象的属性。

$.each( { name: "Amit", team: "India" }, function(n, l){
   alert( "The index is: " + n + ", Value: " + l );
});

上面的照片-

The index is 0, Value: Amit
The index is 1, Value: India

each()用于任何集合遍历,无论是一个对象或一个数组。我们来看另一个例子-

示例

$.each([ 100, 80 ], function( index, value ) {
   alert( index + " : " + value );
});

输出结果

上面的照片-

0 : 100
1 : 80