0

我已经为身份验证编写了这段代码。它在调用函数“a”之前运行良好,控制转到函数 a,但它忽略了重定向行。我使用警报检查它执行“a”函数。为什么会这样?

 $('#loginbtn').click(function() {
var userName = document.getElementById('uid').value;
var password = document.getElementById('pwd').value;
$.ajax({
    type : "POST",
    url : "/LoginNew.aspx/Authenticate",
    data : { 
        userName: userName ,
        password: password 
    },
    async : false, 
    contentType : "application/json; charset=utf-8",
    dataType : "json",
    success : a, 
    error : function(e) {
        alert(e.valueOf());
    }
});

function a() {
    window.location.href = "Login.aspx";
}
});
4

2 回答 2

2
success : a() //function is called like this

尝试使用

success : function(){window.location.href = "Login.aspx"};
于 2013-08-08T06:47:06.483 回答
0

删除.href部分,你需要指定一个路径,像这样

window.location = "/Login.aspx";
于 2013-08-08T06:48:49.277 回答