博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery $.each遍历json数组方法
阅读量:5303 次
发布时间:2019-06-14

本文共 1637 字,大约阅读时间需要 5 分钟。

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "">

<html xmlns="">
 <head>
  <meta http-equiv="content-type" content="text/html; charset=gb2312" />
  <title>jquery $.each遍历json数组方法</title>
  <script type="text/javascript" src="jquery.js"></script>
</head>
<body>
 <script>
  var arr = [{ name: "john", lang: "js" },{ name: "nailwl", lang: "jquery" },{ name: "吴磊", lang: "ext" }]; 
  $.each( arr, function(index, content)
  { 
   alert( "the man's no. is: " + index + ",and " + content.name + " is learning " + content.lang ); 
  });

 </script>

</body>
</html>
 </body>
</html>

<!--

jquery 对象的 $().each() 方法,此方法可用于例遍任何对象
回调函数拥有两个参数: 
第一个为对象的成员或数组的索引
例遍数组,同时使用元素索引和内容
$.each( [0,1,2], function(index, content){ 
  alert( "item #" + index + " its value is: " + content ); 
}); 
 
第二个为对应变量或内容 
如果需要退出 each 循环可使回调函数返回 false,其它返回值将被忽略。

jquery.each(obj,fn,arg) 
该方法有三个参数:进行操作的对象obj,进行操作的函数fn,函数的参数args。

obj对象是数组

each方法会对数组中子元素的逐个进行fn函数调用,直至调用某个子元素返回的结果为false为止,也就是说,我们可以在提供的fn函数进行处理,使 之满足一定条件后就退出each方法调用。当each方法提供了arg参数时,fn函数调用传入的参数为arg,否则为:子元素索引,子元素本身
2.obj 对象不是数组
该方法同1的最大区别是:fn方法会被逐次不考虑返回值的进行进行。换句话说,obj对象的所有属性都会被fn方法进行调用,即使fn函数返回false。调用传入的参数同1类似。
jquery.each=function( obj, fn, args ) {
if ( args ) {
if ( obj.length == undefined ){
for ( var i in obj )
fn.apply( obj, args );
}else{
for ( var i = 0, ol = obj.length; i < ol; i++ ) {
if ( fn.apply( obj, args ) === false )
break;

              }

           }

} else {
if ( obj.length == undefined ) {
for ( var i in obj )
fn.call( obj, i, obj );
}else{
for ( var i = 0, ol = obj.length, val = obj[0]; i < ol && fn.call(val,i,val) !== false; val = obj[++i] ){}

           }

}
return obj;
-->

转载于:https://www.cnblogs.com/loveYN/p/4546883.html

你可能感兴趣的文章
RakNet手册翻译(1)-System OverView
查看>>
网络流23题
查看>>
CF954I Yet Another String Matching Problem 并查集、FFT
查看>>
linux命令
查看>>
pygal and matplotlib(again)
查看>>
Linux从入门到精通——系统无法启动可能的情况及排错方法
查看>>
Redis 从数据库配置
查看>>
JavaScript 基础
查看>>
分布式实现技术总结
查看>>
BlackBerry Localization sample (1)
查看>>
Remainder
查看>>
Android:pressed状态下,改变背景和Text样式
查看>>
Spring层次图
查看>>
Unity3D学习笔记(三十一):Xlua(1)
查看>>
第一个C程序 (Blog测试)
查看>>
第一次实验报告
查看>>
删除文本文件行号的小方法(shell,sed)
查看>>
Boyer-Moore字符串查找算法的实现
查看>>
pandas.to_datetime() 只保留【年-月-日】
查看>>
org.apache.flume.FlumeException: NettyAvroRpcClient { host: xxx.xxx.xxx.xxx, port: 41100 }: RPC
查看>>