1. 程式人生 > >JQuery登錄代碼

JQuery登錄代碼

clas () true data ext var 登錄 use 其他

$(function () {
	$("#login").submit(function(event) {
		event.preventDefault();
		if ($("#user").val().length == 0) {
			$("#inform").text("用戶名不能為空");
		}else if ($("#password").val().length == 0) {
			$("#inform").text("密碼不能為空");
		}else if ($("#user").val().length != 0 && $("#password").val().length != 0) {
			if(!(/(^[1-9]\d*$)/.test($("#user").val()))){
				$("#inform").text("用戶名含有非法字符");//有其他字母或者符號型字符的存在
			}else if((/(^[1-9]\d*$)/.test($("#user").val()))){
				$.ajax({
					url:"loginJson.jsp",
					data:{User:$("#user").val(),Password:$("#password").val()},
					success:function(result){
						//alert(result);
						var logindata = JSON.parse(result);
						if(logindata.checkResult == null){
							$("#inform").text("該用戶不存在");
						}else if (logindata.checkResult == true) {
							window.location.href="index.jsp";
							//alert("done");
						}else if (logindata.checkResult == false){
							$("#inform").text("密碼錯誤");
						}
					}
				});
			}
		}
	});

  

JQuery登錄代碼