JQuery循环遍历获取json数据
记录使用ajax中获取一个list数据之后怎么解析
示例代码如下:
for循环
代码语言:javascript复制$.ajax({
type: 'GET',
url: url,
dataType: 'json',
success: function (data) {
for (i = 0; i < data.length; i ) {
//业务代码
$('#ot_' data[i].BsOrgTypeCD).prop("checked", true);
}
},
error: function (data) {
top.layer.msg("获取机构类型失败!");
}
});
each循环
代码语言:javascript复制$.ajax({
type: 'GET',
url: url,
dataType: 'json',
success: function (data) {
$.each(data, function (i, d) {
//业务代码
$('#ot_' d.BsOrgTypeCD).prop("checked", true);
});
},
error: function (data) {
top.layer.msg("获取机构类型失败!");
}
});