JS去掉最后一个字符
2021-01-11
if(confirm('确定要删除吗')==true){
return true;
}else{
return false;
}
$.ajax({
//提交数据的类型 POST GET
type:"POST",
//提交的网址
url:"/Login/Index/checkLogin.html",
//提交的数据
data:{account:account,password:password},
//返回数据的格式
datatype: "json",//"xml", "html", "script", "json", "jsonp", "text".
//在请求之前调用的函数
beforeSend:function(){
//$("#msg").html("logining");
},
//成功返回之后调用的函数
success:function(data){
//$("#msg").html(decodeURI(data));
//alert(data.msg);
if(data.state==1){
location.href=data.url;
}else{
alert(data.msg);
}
} ,
//调用执行后调用的函数
complete: function(XMLHttpRequest, textStatus){
//alert(XMLHttpRequest.responseText);
//alert(textStatus);
//HideLoading();
},
//调用出错执行的函数
error: function(){
//请求出错处理
}
});
2021-01-11
2021-04-28
2021-01-11
2021-07-01
2021-01-11
2021-01-11
2021-01-11
2021-01-11
评论