标签:div class .json enter function text center 请求 bsp
jQuery ajax读取本地json文件
json文件
{ "first":[ {"name":"张三","sex":"男"}, {"name":"李四","sex":"男"}, {"name":"王武","sex":"男"}, {"name":"李梅","sex":"女"} ] }
js
$.ajax({ url: "ceshi.json",//json文件位置 type: "GET",//请求方式为get dataType: "json", //返回数据格式为json success: function(data) {//请求成功完成后要执行的方法 //each循环 使用$.each方法遍历返回的数据date $.each(data.first, function(i, item) { var str = ‘<div>姓名:‘ + item.name + ‘性别:‘ + item.sex + ‘</div>‘; document.write(str); }) } })
标签:div class .json enter function text center 请求 bsp
原文地址:http://www.cnblogs.com/ooo0/p/6385698.html