前端之家收集整理的这篇文章主要介绍了
Ajax Json使用,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
var uri=path+"/dataWrite/dataWrite_progress.action";
$.ajax({
type: "post",url: uri,dataType: 'json',success: function (info) {
json=eval(info);
properess=Number(json.properess);
tableName=json.tableName;
$("#message").text(tableName+"-更新进度:"+properess+"%");
}
});
Map<String,String> message=new HashMap<String,String>();
message.put("tableName",tableName);
message.put("properess",new
java.text.DecimalFormat("#.00").format(properess));
String msg=JSONObject.fromObject(message).toString();
response.getWriter().write(msg);
原文链接:https://www.f2er.com/ajax/162329.html