Js代码 <script type="text/javascript"> getJson('age'); function getJson(key){ var jsonObj={"name":"张三","age":"24","profession":"工程师"}; 遍历Json串获取其属性 for(var item in jsonObj){ if(item…
先看看json返回的数据结构: 我需要遍历取出bookreno 与 title 加载到页面容器中去 首先我要取到 recommendedBookList 字典结构数据,然后遍历反射到相应对象的属性 主方法这样写: $(d.recommendedBookList).each(function(index,item){ //index指下标 //item指代对应元素内容 //this指代每一个元素对象 var bookno= item.bookrecno; var title = item…