如下面代码,这是一个登陆的界面的javascript代码,哪位大佬能不能说一下ajax里的success和error里的含义
[JavaScript] 纯文本查看 复制代码 $(function () {
$("#btnLogin").click(function () {
//val() 方法返回或设置被选元素的值。
let accountname=$("[name=accountname]").val();
let password=$("[name=password]").val();
if(accountname==""){
alert("请输入账号");
return ;
}
if(password==""){
alert("请输入密码");
return ;
}
$.ajax({
url:'${pageContext.request.contextPath}/admin/huiyuan/login',
data:{
accountname,
password,
},
method:'POST',
success:function (res) {
if (res ==null) {
alert("异常");
return;
}
if (res.stateCode<0){
alert(res.des);
return;
}
window.location.href="${pageContext.request.contextPath}/e/huiyuan/accountinfo.jsp";
},
error:function (XMLREQUEST,textStatus, errorThrown) {
alert(XMLREQUEST.status+errorThrown)
}
});
});
}); |