码迷,mamicode.com
首页 > Web开发 > 详细

ajax解析json值

时间:2018-06-23 21:01:22      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:ext   syn   item   end   json   onclick   class   pos   pre   

$.ajax({
async: true,
type: "post",
url: "${ctxPath!}/pc/xxx/json?id=" + id,
dataType: "json",
success: function (data) {
$("#shi").empty();
$.each(data.listcity, function (i, item) {
var text = "<li onclick=\"drop(this)\">" + item.cityName + "</li>";
$("#shi").append(text);
})
$("#shi").append(" <i class=\"clear\"></i>");
}
})

ajax解析json值

标签:ext   syn   item   end   json   onclick   class   pos   pre   

原文地址:https://www.cnblogs.com/zhangyong0908/p/9218275.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!