$(document).ready(function() {
//登录提交
$("#login_submit").bind('click',function(){
var username=$("#username").val();
var password=$("#password").val();
$.ajax({
type : 'POST',
url : './login.php',
data: {type :'ajax',username:username,password:password},
success : function(msg){
//alert(msg);
if(msg==-1){
alert('用户名不能为空');
$("#username").focus();
}
if(msg==-2){
alert('用户名不存在');
$("#username").val("");
$("#username").focus();
}
if(msg==-3){
alert('密码不能为空');
$("#password").focus();
}
if(msg==-6){
alert('密码输入不正确');
$("#password").focus();
}
if(msg==1){
//alert('登录成功');
window.location.href='./index.php';
}
}
});
});
});
Copyright © 2019- huatuo6.cn 版权所有 赣ICP备2024042791号-9
违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com
本站由北京市万商天勤律师事务所王兴未律师提供法律服务