62,265
社区成员
发帖
与我相关
我的任务
分享
asp页面:
<script language=javascript type=text/javascript>
function ShowWorking()
{
document.all.Loading.style.visibility = "visible";
}
</script>
<style type="text/css">
.cssLoading { Z-INDEX: 210; POSITION: absolute; TEXT-ALIGN: center; FILTER: progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=80,finishOpacity=50); BACKGROUND-COLOR: #f0f0f0; WIDTH: 1100px; HEIGHT: 600px; VISIBILITY: hidden; VERTICAL-ALIGN: middle; TOP: 0px; CURSOR: wait; LEFT: 0px }
</style>
<form id=Form1 method=post runat="server">
<div id="Loading" class="cssLoading">
<table cellpadding="0" cellspacing="0" style="TEXT-ALIGN:center;HEIGHT:100%;VERTICAL-ALIGN:middle;widht:100%">
<tr>
<td>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img id="run" src="你的图片地址" width="16" height="16" border="0"></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<input id="inputs" name="inputs" type="button" onclick="ShowWorking()">
<!-- 你的HTML语言-->