Ajax Json使用

前端之家收集整理的这篇文章主要介绍了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

猜你在找的Ajax相关文章