我已经为身份验证编写了这段代码。它在调用函数“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";
}
});