遍历 jquery获取的元素集合:$.each(元素集合,function(i,ele){})
不能用for(var i in )遍历元素集合,报错
遍历对象:for(var i in arr){ arr[i] ; ......}