$.each
Posted 壹品轩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了$.each相关的知识,希望对你有一定的参考价值。
function(index,element)
必需。为每个匹配元素规定运行的函数。
- index - 选择器的 index 位置//并非必须
- element - 当前的元素(也可使用 "this" 选择器)
例:有一个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 });
以上是关于$.each的主要内容,如果未能解决你的问题,请参考以下文章
Thymeleaf(第九十一二章)本地变量#属性优先级#注释和块#内联
Groovymap 集合 ( map 集合遍历 | 使用 map 集合的 each 方法遍历 map 集合 | 代码示例 )