json相关

json强转:将data强转为json

function(data) {
var msg= eval('('+data+')');
alert(msg.msg);
parent.window.closeDialog();
});

后台json发送

JSONObject json = new JSONObject();
json.put("msg", msg);

String jsonString=json.toJSONString();
response.getWriter().write(jsonString);

 

将对象转为字符串,传给前台展示


String json = JSONObject.toJSONString(queryBaseBatchResult);

response.getWriter().write(json);

 

trigger() 方法触发被选元素的指定事件类型。

$("#ThisForm input[value='Mail']").trigger("click");

 

posted @ 2015-05-12 17:17  萧雪痕  阅读(115)  评论(0编辑  收藏  举报