- 注册时间
- 2013-7-10
- 最后登录
- 2014-2-21
- 阅读权限
- 10
- 积分
- 139
- 精华
- 0
- 帖子
- 36
|
我在一个新建页面这样定义的
function save(){
var form = new mini.Form("#sendMsgForm");
var o = form.getData();
form.validate();
if (form.isValid() == false) return;
var json = mini.encode([o]);
$.ajax({
url: "../msg/msg.do?method=sendMsg",
type: 'post',
data: { data: json},
success: function (text) {
window.location.href="<%=basePath%>msg/alreadySend.jsp";
},
error: function (jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText);
window.location.href="<%=basePath%>msg/alreadySend.jsp";
}
});
}
我想在success时取得通过request设置的值怎么取得啊
|
|