jQuery+AJAX實(shí)現(xiàn)遮罩層登錄驗(yàn)證界面(附源碼)
JQuery遮罩層登錄界面效果的實(shí)現(xiàn),AJAX實(shí)現(xiàn)登錄驗(yàn)證,文章尾有完整示例源碼下載,歡迎大家學(xué)習(xí)研究。
操作系統(tǒng):Windwos7 Ultimate
開發(fā)工具:Visual Studio 2010
數(shù)據(jù)庫:Sql Server 2005
測試瀏覽器:IE8、FF3.6.8、Google Chrome (IE8中彈出登錄層后會出現(xiàn)豎拉條,其他兩種沒有出現(xiàn),那個豎拉條可以在JS中通過修改數(shù)值讓其不出現(xiàn),但是下面會出現(xiàn)白邊,越來越覺得IE有點(diǎn)那個了......)
1、預(yù)覽
1)登錄前
2)點(diǎn)擊登錄顯示登錄窗口(層),同時(shí)用一個灰色透明層遮罩主窗體內(nèi)容,點(diǎn)擊【登錄】,隱藏【登錄】,顯示loading圖,登錄失敗,顯示【登錄】,隱藏登錄圖,同時(shí)顯示提示信息
3)登錄成功后,去掉去掉遮罩層和登錄層,顯示“xxx,您好! ”
2、實(shí)現(xiàn)
使用VS2010創(chuàng)建一個Web Site,此功能是在母版頁Site.master中實(shí)現(xiàn)的。VS2010會自動添加JQuery的js文件到Scripts文件夾,并創(chuàng)建一個母版頁和基于此母版頁的Default.aspx和About.aspx兩個窗體。
1)登錄層界面設(shè)計(jì),看Site.master中的代碼
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Site.master.cs" Inherits="SiteMaster" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head runat="server"> <title>FlyNoteBook</title> <script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script> <script type="text/javascript" src="Scripts/common.js"></script> <link href="~/Styles/Site.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="Scripts/login.js"></script> <asp:ContentPlaceHolder ID="HeadContent" runat="server"> </asp:ContentPlaceHolder> </head> <body> <form runat="server"> <div class="page"> <div class="header"> <div class="title"> <img src="Images/Pictures/logo3.png" alt="FlyNoteBook Logo" /> FlyNoteBook </div> <div class="loginDisplay"> <span id="popup" runat="server">登錄</span> <span id="loginSuccess" runat="server"></span> </div> <div class="clear hideSkiplink"> <asp:Menu ID="NavigationMenu" runat="server" CssClass="menu" EnableViewState="false" IncludeStyleBlock="false" Orientation="Horizontal"> <Items> <asp:MenuItem NavigateUrl="~/Default.aspx" Text="首頁" /> <asp:MenuItem NavigateUrl="~/About.aspx" Text="關(guān)于" /> </Items> </asp:Menu> </div> </div> <!--登錄窗口:Begin--> <div id="divLoginWindow"> <table style="width: 100%;" border="0" cellpadding="2" cellspacing="0"> <tr style="background-color: #e0f3d9; border-bottom: #bfe5b3 solid 2px"> <td style="height: 38px; width: 100px;"> 用戶登錄 </td> <td> <img src="Images/Button/close.gif" id="closeBtn" align="absmiddle" alt="關(guān)閉" title="關(guān)閉" /> </td> </tr> <tr> <td colspan="2" style="height: 5px;"> </td> </tr> <tr> <td align="right"> 用戶名: </td> <td> <asp:TextBox ID="txtUserName" runat="server"></asp:TextBox> </td> </tr> <tr> <td align="right"> 密 碼: </td> <td> <asp:TextBox ID="txtPassword" TextMode="Password" runat="server"></asp:TextBox> </td> </tr> <tr> <td align="right"> 驗(yàn)證碼: </td> <td> <asp:TextBox ID="txtCode" Style="width: 88px;" runat="server"></asp:TextBox> <img src="Code.aspx" id="imgRndCode" style="vertical-align: middle;" onclick="ChangeCode(this);" alt="驗(yàn)證碼" title="看不清,點(diǎn)擊圖片更換圖片" /> </td> </tr> <tr> <td colspan="2" align="center"> <a onclick="CheckLogin()" id="alogin">登 錄</a> <img id="loading" src="Images/Loading/loading04.gif" alt="正在登錄" title="正在登錄..." /> <br /> <span id="showMes"></span> </td> </tr> </table> </div> <!--登錄窗口:End--> <div class="main"> <asp:ContentPlaceHolder ID="MainContent" runat="server" /> </div> <div class="clear"> </div> </div> <div class="footer"> <a >By Ferry</a> </div> </form> </body> </html>
2)實(shí)現(xiàn)遮罩層和彈出登錄界面的層的js文件Scripts/common.js的代碼,注意,里面硬寫了一些母版頁Site.master中的元素的ID
$(function () { var screenwidth, screenheight, mytop, getPosLeft, getPosTop screenwidth = $(window).width(); screenheight = $(window).height(); //獲取滾動條距頂部的偏移 mytop = $(document).scrollTop(); //計(jì)算彈出層的left getPosLeft = screenwidth / 2 - 200; //計(jì)算彈出層的top getPosTop = screenheight / 2 - 150; //css定位彈出層 $("#divLoginWindow").css({ "left": getPosLeft, "top": getPosTop }); //當(dāng)瀏覽器窗口大小改變時(shí) $(window).resize(function () { screenwidth = $(window).width(); screenheight = $(window).height(); mytop = $(document).scrollTop(); getPosLeft = screenwidth / 2 - 200; getPosTop = screenheight / 2 - 150; $("#divLoginWindow").css({ "left": getPosLeft, "top": getPosTop + mytop }); }); //當(dāng)拉動滾動條時(shí),彈出層跟著移動 $(window).scroll(function () { screenwidth = $(window).width(); screenheight = $(window).height(); mytop = $(document).scrollTop(); getPosLeft = screenwidth / 2 - 200; getPosTop = screenheight / 2 - 150; $("#divLoginWindow").css({ "left": getPosLeft, "top": getPosTop + mytop }); }); //點(diǎn)擊鏈接彈出登錄窗口 $("#popup").click(function () { $("#divLoginWindow").fadeIn("slow"); //toggle("slow"); $("#txtUserName").focus(); //獲取頁面文檔的高度 var docheight = $(document).height(); //追加一個層,使背景變灰 $("body").append("<div id='greybackground'></div>"); $("#greybackground").css({ "opacity": "0.5", "height": docheight }); return false; }); //點(diǎn)擊關(guān)閉按鈕 $("#closeBtn").click(function () { $("#divLoginWindow").fadeOut("slow"); ////hide(); //刪除變灰的層 $("#greybackground").remove(); return false; }); }); //更換驗(yàn)證碼圖片 function ChangeCode(obj) { obj.src = "Code.aspx?" + Math.random(); }
3)點(diǎn)擊【登錄】實(shí)現(xiàn)AJAX登錄驗(yàn)證功能的js文件Scripts/login.js的代碼
var count = 0; $(document).ready(function () { $("#loading").hide() }); function CheckLogin() { $("#alogin").hide(); $("#loading").show(); var txtCode = $("#txtCode"); var txtName = $("#txtUserName"); var txtPwd = $("#txtPassword"); $.ajax({ url: "CheckLogin.aspx?Code=" + txtCode.val() + "&Name=" + txtName.val() + "&Pwd=" + txtPwd.val(), type: "post", datatype: "text", success: function (returnValue) { if (returnValue != "false") { $("#popup").hide(); $("#showMes").hide(); $("#loginSuccess").html(returnValue + ',您好!'); $("#divLoginWindow").remove(); $("#greybackground").remove(); $("#showMes").hide(); } else { count = count + 1; $("#loading").hide(); $("#alogin").show(); $("#showMes").show(); $("#showMes").html("<font color=red>登錄失敗,請檢查后重試!(" + count + "次)</font>"); } } }) }
4)請求的CheckLogin.aspx的后臺代碼,前臺清除剩Page命令一行
using System; using System.Data; public partial class CheckLogin : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { try { String strCode = Request.QueryString["Code"]; String strName = Request.QueryString["Name"]; String strPassword = Request.QueryString["Pwd"]; if (strCode != Session["Code"].ToString()) { Response.Write("false"); } else { DAO.SqlHelper helper = new DAO.SqlHelper(); DataTable dt = helper.FillDataTable(String.Format("Select UserName,TrueName From Clients Where UserName='{0}' And Password='{1}'", strName, strPassword )); if (dt != null && dt.Rows.Count > 0) { Session["TrueName"] = dt.Rows[0]["TrueName"].ToString(); Response.Write(dt.Rows[0]["TrueName"].ToString()); } else { Response.Write("false"); } } } catch { Response.Write("false"); } } }
源碼下載:jQuery+AJAX實(shí)現(xiàn)遮罩層登錄驗(yàn)證界面
以上就是jQuery實(shí)現(xiàn)遮罩層登錄界面,AJAX實(shí)現(xiàn)登錄驗(yàn)證的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助
相關(guān)文章
Query中click(),bind(),live(),delegate()的區(qū)別
這篇文章主要介紹了Query中click(),bind(),live(),delegate()之間的區(qū)別。需要的朋友可以過來參考下,希望對大家有所幫助2013-11-11jQuery實(shí)現(xiàn)動態(tài)表單驗(yàn)證時(shí)文本框抖動效果完整實(shí)例
這篇文章主要介紹了jQuery實(shí)現(xiàn)動態(tài)表單驗(yàn)證時(shí)文本框抖動效果,可實(shí)現(xiàn)表單元素左右晃動的抖動功能,涉及jquery中元素的匹配與動畫animate效果實(shí)現(xiàn)技巧,需要的朋友可以參考下2015-08-08基于jQuery 實(shí)現(xiàn)bootstrapValidator下的全局驗(yàn)證
這篇文章主要介紹了基于jQuery 實(shí)現(xiàn)bootstrapValidator下的全局驗(yàn)證 的相關(guān)資料,需要的朋友可以參考下2015-12-12jQuery flip插件實(shí)現(xiàn)的翻牌效果示例【附demo源碼下載】
這篇文章主要介紹了jQuery flip插件實(shí)現(xiàn)的翻牌效果,可實(shí)現(xiàn)類似卡羅牌翻頁的視覺效果,涉及jquery.flip.min.js插件的使用,并附帶demo源碼供讀者下載參考,需要的朋友可以參考下2016-09-09jquery根據(jù)name取得select選中的值實(shí)例(超簡單)
下面小編就為大家分享一篇jquery根據(jù)name取得select選中的值實(shí)例(超簡單),具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-01-01