循环遍历中的if(index==3) index是循环的谁啊?
循环遍历中的if(index==3) index是循环的谁啊?getJSON() 的固定格式是里面用$.each()吗,这时的$指的是什么
循环遍历中的if(index==3) index是循环的谁啊?getJSON() 的固定格式是里面用$.each()吗,这时的$指的是什么
2015-07-20
$.getJSON("http://www.imooc.com/data/sport.json",function(data){
$this.attr("disabled", "true");
$.each(data, function (index, sport) {
if(index==3)
$("ul").append("<li>" + sport["name"] + "</li>");
});
我感觉这个函数的意思是,从http://www.imooc.com/data/sport.json取得JSON,并作为data传给function(data),然后$.each(data, function (index, sport)对JSON中的数据循环,下标为命名为index,数据命名为sport,于是就可以通过sport["name"]取得相应的值了。
举报