- 注册时间
- 2014-3-12
- 最后登录
- 2014-4-24
- 阅读权限
- 10
- 积分
- 145
- 精华
- 0
- 帖子
- 45
|
lost 发表于 2014-3-26 15:18
$.ajax({
url: "/task_UI/user/User?action=loginValidate",
as ...
为啥我登录成功或失败都返回到成功的index1页面
$.ajax({
url: "/task_UI/user/User?action=loginValidate",
type: "post",
data: { data: json },
success: function (text) {
alert(text);
setTimeout(function () {
window.location = "index1.jsp";
}, 1500);
},
error: function (text) {
alert(text);
}
}); |
|