- 注册时间
- 2018-4-19
- 最后登录
- 1970-1-1
- 阅读权限
- 10
- 积分
- 49
- 精华
- 0
- 帖子
- 0

|
$.ajax({
url: "../AddStudent",
type: 'post',
data: { data: json },
cache: false,
success: function (text) {
mini.showTips({
content: "<b>成功</b> <br/>数据保存成功",
state: "success",
x: "center",
y: "center",
timeout: 3000
});
mini.alert(text);
CloseWindow("save");
},
error: function (jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText);
CloseWindow();
}
});
|
|