JQuery登录代码
Posted w-s-l123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQuery登录代码相关的知识,希望对你有一定的参考价值。
$(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登录代码的主要内容,如果未能解决你的问题,请参考以下文章
Visual Studio 2012-2019的130多个jQuery代码片段。
使用 NodeJS 和 JSDOM/jQuery 从代码片段构建 PHP 页面