本文實例講述了jQuery實現(xiàn)按鈕點擊遮罩加載及處理完后恢復的效果。分享給大家供大家參考,具體如下:
運行效果圖如下:

具體代碼如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="EasyUiLoad.aspx.cs" Inherits="EasyUiLoad" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title>EasyUI加載效果</title> <style type="text/css"> body{font-size:12px} .datagrid-mask{position:absolute;left:0;top:0;width:100%;height:100%;opacity:.5;filter:alpha(opacity=30);background-color:#e0ecff;display:none} .datagrid-mask-msg{position:absolute;top:50%;margin-top:-20px;padding:10px 15px 10px 15px;width:auto;height:16px;border-width:2px;border-color:#68a5ff;border-style:solid;display:none} .img1{vertical-align:middle;} </style> <script src="JS/jquery-1.9.1.js" type="text/javascript"></script> <script type="text/javascript"> //load function EasyUILoad() { $("<div class=/"datagrid-mask/"></div>").css({ display: "block", width: "100%", height: "auto !important" }).appendTo("body"); $("<div class=/"datagrid-mask-msg/"></div>").html("<img src='images/loading.gif' class='img1' /> 正在運行,請稍候。。。").appendTo("body").css({ display: "block", left: ($(document.body).outerWidth(true) - 190) / 2, top: ($(window).height() - 45) / 2 }); } //display Load function dispalyEasyUILoad() { $(".datagrid-mask").remove(); $(".datagrid-mask-msg").remove(); } </script></head><body> <form id="form1" runat="server"> <div> <asp:Button ID="Button1" runat="server" Text="加載效果" OnClientClick="javascript:EasyUILoad();" onclick="Button1_Click" /> </div> </form></body></html>using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;public partial class EasyUiLoad : System.Web.UI.Page{ protected void Page_Load(object sender, EventArgs e) { } protected void Button1_Click(object sender, EventArgs e) { System.Threading.Thread.Sleep(5000); //處理邏輯... //完成處理后恢復 ClientScript.RegisterStartupScript(this.GetType(), "closeLoad", "dispalyEasyUILoad();", true); }}更多關于jQuery相關內(nèi)容感興趣的讀者可查看本站專題:《jquery中Ajax用法總結》、《jQuery表格(table)操作技巧匯總》、《jQuery拖拽特效與技巧總結》、《jQuery擴展技巧總結》、《jQuery常見經(jīng)典特效匯總》、《jQuery動畫與特效用法總結》、《jquery選擇器用法總結》及《jQuery常用插件及用法總結》
希望本文所述對大家jQuery程序設計有所幫助。
新聞熱點
疑難解答