服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - ASP教程 - asp上传带显示的代码

asp上传带显示的代码

2019-09-27 09:26asp代码网 ASP教程

一个不错的asp上传类代码,可以显示上传进度

注意是用到了,下列的演示

  1. <script language="JavaScript" type="text/javascript">  
  2. adTime=8;  
  3. chanceAd=1;  
  4. var ns=(document.layers);  
  5. var ie=(document.all);  
  6. var w3=(document.getElementById && !ie);  
  7. adCount=0;  
  8. function initAd(){  
  9.         if(!ns && !ie && !w3) return;  
  10.         if(ie)                adDiv=eval('document.all.sponsorAdDiv.style');  
  11.         else if(ns)        adDiv=eval('document.layers["sponsorAdDiv"]');  
  12.         else if(w3)        adDiv=eval('document.getElementById("sponsorAdDiv").style');  
  13.         randAd=Math.ceil(Math.random()*chanceAd);  
  14.         if (ie||w3)  
  15.         adDiv.visibility="visible";  
  16.         else  
  17.         adDiv.visibility ="show";  
  18.         if(randAd==1) showAd();  
  19. }  
  20. function showAd(){  
  21. if(adCount<adTime*10){adCount+=1;  
  22.         if (ie){documentWidth  =document.body.offsetWidth/2+document.body.scrollLeft-20;  
  23.         documentHeight =document.body.offsetHeight/2+document.body.scrollTop-20;}  
  24.         else if (ns){documentWidth=window.innerWidth/2+window.pageXOffset-20;  
  25.         documentHeight=window.innerHeight/2+window.pageYOffset-20;}  
  26.         else if (w3){documentWidth=self.innerWidth/2+window.pageXOffset-20;  
  27.         documentHeight=self.innerHeight/2+window.pageYOffset-20;}  
  28.         adDiv.left=documentWidth-100;adDiv.top =documentHeight-0;  
  29.         setTimeout("showAd()",100);}  
  30. }  
  31. function closeAd(){  
  32. if (ie||w3)  
  33. adDiv.display="none";  
  34. else  
  35. adDiv.visibility ="hide";  
  36. }  
  37. function $(obj){  
  38.     return document.getElementById(obj);  
  39. }  
  40.  
  41. function checkForm(){  
  42.     if($("file1").value != "")  
  43.     {  
  44.                 if(/jpg|jpeg|gif|bmp/i.test($("file1").value.match(/\.(\w+)$/)[0]) == false){  
  45.                     alert("您只能上传图片文件");  
  46.                     return false;  
  47.                 }  
  48.                 else  
  49.                 {  
  50.                     return true;  
  51.                 }  
  52.     }  
  53.     else  
  54.     {  
  55.         alert("您还没有选中需要上传的图片");  
  56.         return false;  
  57.     }  

延伸 · 阅读

精彩推荐