• 页面加载Loading(.net)


    C#:

    protected override void OnInit(EventArgs e)
    {
        Response.Write("<div id='mydiv'>_</div>");
        Response.Write("<script type='text/javascript'>document.getElementById('mydiv').innerHTML = '<img src=\"images/ajax-loader.gif\" />';</script>");
        Response.Write("<script type='text/javascript'>");
        Response.Write("function ShowWait(){}");
        Response.Write("function StartShowWait(){document.getElementById('mydiv').style.display = '';}");
        Response.Write("StartShowWait();");
        Response.Write("</script>");
        Response.Flush();
    }

    HTML:

    document.getElementById('mydiv').style.display = "none";
    ==================================================
    孟子的进度效果:
    Response.Write("<div id='mydiv' >");
    Response.Write("_");
    Response.Write("</div>");
    Response.Write("<script>mydiv.innerText = '';</script>");
    Response.Write("<script language=javascript>;");
    Response.Write("var dots = 0;var dotmax = 10;function ShowWait()");
    Response.Write("{var output; output = '正在装载页面';dots++;if(dots>=dotmax)dots=1;");
     
    
    Response.Write("for(var x = 0;x < dots;x++){output += '·';}mydiv.innerText =  output;}");
    Response.Write("function StartShowWait(){mydiv.style.visibility = 'visible'; ");
    Response.Write("window.setInterval('ShowWait()',1000);}");
    Response.Write("function HideWait(){mydiv.style.visibility = 'hidden';");
    Response.Write("window.clearInterval();}");
    Response.Write("StartShowWait();</script>");
    Response.Flush();
    Thread.Sleep(10000);
  • 相关阅读:
    Javascript快速入门(上篇)
    Linux快速入门01-基础概念
    正则表达式快速入门
    Sublime快速入门
    centos 6.5 git 服务器的配置(入门级)
    centos6.5 网卡的处理
    centos 6.5 u盘 安装问题 :vesamenu.c32: Not a COM32R image
    ubuntu 14.04 对exfat的支持
    [转]ubuntu 14.04 如何开启和关闭触控板
    ubuntu 下mongodb安装
  • 原文地址:https://www.cnblogs.com/CoderWayne/p/4485610.html
Copyright © 2020-2023  润新知