- 注册时间
- 2013-3-12
- 最后登录
- 2013-4-17
- 阅读权限
- 10
- 积分
- 79
- 精华
- 0
- 帖子
- 25
|
不行哦。我这样写的。
$.ajax({
type: "POST",
url: "/Account/LogOn",
data: { "model.name": username.getValue(), "model.password": userpass.getValue() },
timeout: 20000,
datatype: "Json",
success: function (data) {
mini.loading("正在验证用户信息,请稍后", "登录成功");
if (data.Success) {
loginWindow.hide();
setTimeout(function () {
window.location = "/Home/Index";
}, 1500);
} else {
mini.unmase();
userpass.setValue("");
username.setValue("");
username.focus();
mini.alert(data.Message);
}
}
}); |
|