jQuery的ajax和遍历数组json实例代码
时间:2021-01-08 12:21:56|栏目:jquery|点击: 次
jQuery的ajax和遍历数组json实例代码
jQuery.ajax({ type: "POST", url: "server.json", dataType:'json', data: "", success: function(msg){ var title = ""; jQuery.each(msg,function(key,value){ alert(value.ec_id+" "+value.ec_title); }) } });