标签:数组 lis func 一个 tin data each color ble
function(index,element)
必需。为每个匹配元素规定运行的函数。
例:有一个ajax.post返回的json数组data
1 $(data).each(function(i,n){ 2 alert("下标:"+i); 3 alert("值:"+n); 4 });
1 $(function(){ 2 alert("index+++"); 3 $.post("product/manu",{ 4 "ID" : "1" 5 },function(data){ 6 alert("data++++" + date); 7 $(data).each(function(i,n){ 8 w1 = ‘<option value="‘+n.mid+‘">‘+n.mname+‘</option>‘; 9 $("select:last").append(w1); 10 }); 11 },"json"); 12 });
标签:数组 lis func 一个 tin data each color ble
原文地址:http://www.cnblogs.com/tongs/p/7498650.html