Methods to traverse the json array: 1. Use each to traverse the json array, with statements such as "$.each(obj,function(n,value){...}"; 2. Use for to traverse and parse json, Statements such as "for(var p in obj){...}".
This article mainly introduces two methods of JQuery traversing json arrays. This article gives the methods of using each and for to traverse json respectively. Friends who need it can refer to the following
1. Using each to traverse
$(function () { var tbody = ""; //------------遍历对象 .each的使用------------- //对象语法JSON数据格式(当服务器端回调回来的对象数据格式是json数据格式,必须保证JSON的格式要求,回调的对象必须使用eval函数进行转化(否则将得不到Object)。本文不作详细介绍服务器端回调的数据问题,我们将直接自定义对象) var obj = [{ "name": "项海军", "password": "123456"}]; $("#result").html("------------遍历对象 .each的使用-------------"); alert(obj); //是个object元素 //下面使用each进行遍历 $.each(obj, function (n, value) { alert(n + ' ' + value); var trs = ""; trs += "<tr><td>" + value.name + "</td> <td>" + value.password + "</td></tr>"; tbody += trs; }); $("#project").append(tbody); });
2. Using for traverses and parses json:
var json = [{dd:'SB',AA:'东东',re1:123},{cccc:'dd',lk:'1qw'}]; for(var i=0,l=json.length;i<l;i++){ for(var key in json[i]){ alert(key+':'+json[i][key]); } }
The above is the detailed content of How to traverse json array. For more information, please follow other related articles on the PHP Chinese website!