zoukankan
html css js c++ java
进度条的实现
<
title
>
loadpage
</
title
>
<
meta http
-
equiv
=
"
Content-Type
"
content
=
"
text/html; charset=gb2312
"
>
<
style type
=
"
text/css
"
>
<!--
.unnamed1 { background
-
color: #
000000
}
-->
</
style
>
</
head
>
<
body
>
<
table border
=
0
cellpadding
=
0
cellspacing
=
0
width
=
"
100%
"
height
=
"
100%
"
>
<
tr
>
<
form name
=
loading
>
<
td align
=
center
>
<
p align
=
"
center
"
>&
nbsp;
</
p
>
<
p align
=
"
center
"
><
font color
=
"
#00FF00
"
size
=
"
2
"
></
font
></
p
>
<
p
>
<
input type
=
text name
=
chart size
=
46
style
=
"
font-family:Arial; font-weight:bolder;
color:#00FF00; background-color:black; padding:0px; border-style:none;
"
>
<
br
>
<
br
>
<
input type
=
text name
=
percent size
=
46
style
=
"
font-family:Arial; color:#00FF00;
text-align:center; border-medium; border-style:none;
"
class
=
"
unnamed1
"
>
<
br
>
<
br
>
<
font color
=
"
#00FF00
"
size
=
"
2
"
>
<
script
>
var
bar
=
0
var
line
=
"
||
"
var
amount
=
"
||
"
count()
function
count(){
bar
=
bar
+
2
amount
=
amount
+
line
document.loading.chart.value
=
amount
document.loading.percent.value
=
'正在查询,请稍候
'
if
(bar
<
99
)
{
setTimeout(
"
count()
"
,
50
);
}
else
{
amount
=
""
;
setTimeout(
"
count()
"
,
50
);
bar
=
0
;
}
}
</
script
>
<
noscript
></
noscript
></
font
></
p
>
</
td
>
<!--
//
-->
</
form
>
</
tr
>
</
table
>
</
body
>
</
html
>
保存为 wait.html
//
显示
function checkCard()
{
parent.document.all.wait.height
=
400
;
parent.document.all.cardframe.height
=
0
;
document.location.href
=
'
Customer_Service01.aspx
'
;
}
function hide_wait()
{
parent.document.all.wait.height
=
0
;
parent.document.all.cardframe.height
=
document.body.scrollHeight;
document.body.style.overflow
=
"
hidden
"
;
}
</
script
>
</
HEAD
>
<
body onload
=
"
hide_wait()
"
MS_POSITIONING
=
"
GridLayout
"
>
//
隐藏
https://files.cnblogs.com/gwazy/%E8%BF%9B%E5%BA%A6%E6%9D%A1.rar
查看全文
相关阅读:
hibernate关联关系映射
java单例模式
HTML如何给table添加滚动条
jquery的几种ajax方式对比
JQuery Selectors 方法说明
jQuery遍历对象/数组/集合
Jquery常用函数
【刷题】【省选】ZJOI2017_仙人掌_LOJ2250/Luogu3687_圆方树/dp计数/树形dp
【学习笔记】圆方树学习笔记
【模板】【刷题】差分与前缀和_LuoguP5488_多项式
原文地址:https://www.cnblogs.com/gwazy/p/138395.html
最新文章
构建之法阅读笔记03
软件工程周学习进度博客(一)
软工个人作业:数组
软件工程第二周开课博客
构建之法阅读笔记02
构建之法阅读笔记01
树状数组(Binary Indexed Tree,BIT)
Java Web开发框架对比
2013-Quartz定时器使用
2013-正则表达式解析文本
热门文章
2013-线程同步的使用
2013-Proxy代理的使用
ForkJoin-任务分拆合并处理器
Observer一种行为模式
使用Executors和ThreadPoolExecutor2
solr基础之shard和zookeeper
十步完全理解SQL
hibernate延时加载机制
MyBatis的动态sql详解
Hibernate映射解析——七种映射关系
Copyright © 2011-2022 走看看