">
Document
var arr=[1,3,5,7,9];
var obj={0:1,1:3,2:5,3:7,4:9,length:5};
//JS不能遍历伪数组,...console.log(index,value);
});*/
//jQuery的(可以遍历伪数组的,还有真的数组都可以遍历啊)
console.log("jQuery下面的");
$.each...(arr,function(index,value)
{
console.log(index,value);
});
$.each(obj,function(index,value