提示用户系统正忙_web方式

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-02 05:48 点击:

页面上要有下面这段html代码:

Html代码 
<div id="BusyMsg" align="center" style="z-index:101;left:25%;top:45%;width:50%;height:100; position:absolute; display:none;background:#F7F7F7; background-color: #F7F7F7; border: 1px solid #4284F7;"> 
    <table height="100%" align="center"> 
        <tr> 
            <td><img src="<%=ctx%>/images/loading.gif" width="16" height="16"/></td> 
            <td><label id='MsgText'></label></td> 
        </tr> 
    </table> 
</div> 
 
<div id="BusyDiv" style="position:absolute; top:0; left:0; width:100%; height:100%; z-index:100; display:none;"> 
    <table style="width:100%;height:100%;background-color: transparent; "> 
        <tr><td></td></tr> 
    </table> 
</div> 


加上这些javascript代码:
Js代码 
function onLoading(){ 
 
    window.document.all.MsgText.innerHTML = "正在查询数据,请稍候……"; 
    window.document.all.BusyMsg.style.display = ""; 
    window.document.all.BusyDiv.style.display = ""; 

 
function afterLoading(){ 
     
    window.document.all.MsgText.innerHTML = ""; 
    window.document.all.BusyMsg.style.display = "none"; 
    window.document.all.BusyDiv.style.display = "none"; 

作者“bbjava”

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • Gb2312转utf-8编码的方法(vbs+js)
      • 如何使用Ajax技术开发Web应用程序(1)
      • js跳转路径问题
      • JavaScript模仿桌面窗口
      • 用js检测两个线段是否相交
      • 我知道的JavaScript -- 设计模式(桥接)应用之 – 验证器
      • 运用JavaScript构建你的第一个Metro式应用程序(on Windows
      • 我是如何去了解jquery的(六),案例之幻灯片轮换
      • Jquery封装幻灯片效果
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1