Heim  >  Artikel  >  Web-Frontend  >  js loading加载效果实现代码_javascript技巧

js loading加载效果实现代码_javascript技巧

WBOY
WBOYOriginal
2016-05-16 18:41:211684Durchsuche
复制代码 代码如下:

protected void Page_Load(object sender, EventArgs e)
{
ShowLoading();
System.Threading.Thread.Sleep(10000);
ClientScript.RegisterClientScriptBlock(typeof(string), "", "<script>document.body.onload=function(){removeLoadMsg();}</script>");
}

///
/// 显示页面正在加载中效果
///

public void ShowLoading()
{
StringBuilder s = new StringBuilder();
s.Append(" \n");
s.Append("\n");
s.Append("
\n");
s.Append("
\n");
s.Append("
页面正在加载中...
\n");
s.Append("
\n");
s.Append("
\n ");
//HttpContext.Current.Response.Write(s.ToString());
HttpContext.Current.Response.Write(s.ToString());
//HttpContext.Current.Response.Flush();
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn