$(function(){
var img=$("img").each(function(index,elem){
// console.log(typeof arguments[0]);
// console.log(typeof arguments[1]);
console.log(index+""+elem.getAttribute("src"));
});
});
图的意思代表什么,请大神指导,本人附带学习教程可以送给他。koko 506450820
http://api.jquery.com/jquery.each/
index是當下物件的序號
elem是當下物件
index就是当前索引序号。elem就是循环中每一项。