首页 > 语言 > JavaScript > 正文

js验证上传图片的方法

2024-05-06 16:20:01
字体:
来源:转载
供稿:网友

这篇文章主要介绍了js验证上传图片的方法,可对上传图片的类型、大小等进行限制,非常简单实用,需要的朋友可以参考下

本文实例讲述了js验证上传图片的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  6. <title>js验证图片</title> 
  7. <script> 
  8. UpLoadFileCheck=function() 
  9. {  
  10. this.AllowExt=".jpg,.gif"
  11. //允许上传的文件类型 0为无限制 
  12. //每个扩展名后边要加一个"," 小写字母表示  
  13. this.AllowImgFileSize=0; 
  14. //允许上传文件的大小 0为无限制 单位:KB  
  15. this.AllowImgWidth=0; 
  16. //允许上传的图片的宽度 0为无限制 单位:px(像素)  
  17. this.AllowImgHeight=0; 
  18. //允许上传的图片的高度 0为无限制 单位:px(像素)  
  19. this.ImgObj=new Image(); 
  20. this.ImgFileSize=0; 
  21. this.ImgWidth=0; 
  22. this.ImgHeight=0; 
  23. this.FileExt=""
  24. this.ErrMsg=""
  25. this.IsImg=false;//全局变量 
  26. UpLoadFileCheck.prototype.CheckExt=function(obj) 
  27. this.ErrMsg="";  
  28. this.ImgObj.src=obj.value;  
  29. //this.HasChecked=false;  
  30. if(obj.value==""
  31. this.ErrMsg="/n请选择一个文件";  
  32. else 
  33. {  
  34. this.FileExt=obj.value.substr(obj.value.lastIndexOf(".")).toLowerCase();  
  35. if(this.AllowExt!=0&&this.AllowExt.indexOf(this.FileExt)==-1) 
  36. //判断文件类型是否允许上传  
  37. {  
  38. this.ErrMsg="/n该文件类型不允许上传。请上传 "+this.AllowExt+" 类型的文件,当前文件类型为"+this.FileExt;  
  39. }  
  40. if(this.ErrMsg!="")  
  41. this.ShowMsg(this.ErrMsg,false);  
  42. return false
  43. else 
  44. return this.CheckProperty(obj);  
  45. UpLoadFileCheck.prototype.CheckProperty=function(obj) 
  46. if(this.ImgObj.readyState!="complete")// 
  47. {  
  48. sleep(1000);//一秒使用图能完全加载  
  49. }  
  50. if(this.IsImg==true
  51. this.ImgWidth=this.ImgObj.width; 
  52. //取得图片的宽度  
  53. this.ImgHeight=this.ImgObj.height; 
  54. //取得图片的高度 
  55. if(this.AllowImgWidth!=0&&this.AllowImgWidth<this.ImgWidth)  
  56. this.ErrMsg=this.ErrMsg+"/n图片宽度超过限制。请上传宽度小于"+this.AllowImgWidth+"px的文件,当前图片宽度为"+this.ImgWidth+"px";  
  57. if(this.AllowImgHeight!=0&&this.AllowImgHeight<this.ImgHeight)  
  58. this.ErrMsg=this.ErrMsg+"/n图片高度超过限制。请上传高度小于"+this.AllowImgHeight+"px的文件,当前图片高度为"+this.ImgHeight+"px";  
  59. this.ImgFileSize=Math.round(this.ImgObj.fileSize/1024*100)/100; 
  60. //取得图片文件的大小  
  61. if(this.AllowImgFileSize!=0&&this.AllowImgFileSize<this.ImgFileSize)  
  62. this.ErrMsg=this.ErrMsg+"/n文件大小超过限制。请上传小于"+this.AllowImgFileSize+"KB的文件,当前文件大小为"+this.ImgFileSize+"KB";  
  63. if(this.ErrMsg!="")  
  64. this.ShowMsg(this.ErrMsg,false);  
  65. return false
  66. else 
  67. return true;  
  68. }  
  69. UpLoadFileCheck.prototype.ShowMsg=function(msg,tf) 
  70. //显示提示信息 tf=false 显示错误信息 msg-信息内容  
  71. {  
  72. /*msg=msg.replace("/n","<li>");  
  73. msg=msg.replace(//n/gi,"<li>");  
  74. */ 
  75. alert(msg); 
  76. function sleep(num)  
  77. {  
  78. var tempDate=new Date();  
  79. var tempStr="";  
  80. var theXmlHttp = new ActiveXObject( "Microsoft.XMLHTTP" );  
  81. while((new Date()-tempDate)<num )  
  82. {  
  83. tempStr+="/n"+(new Date()-tempDate);  
  84. try{  
  85. theXmlHttp .open( "get""about:blank?JK="+Math.random(), false );  
  86. theXmlHttp .send();  
  87. }  
  88. catch(e){;}  
  89. }  
  90. //containerDiv.innerText=tempStr;  
  91. return;  
  92. }  
  93. function c(obj) 
  94. var d=new UpLoadFileCheck();  
  95. d.IsImg=true
  96. d.AllowImgFileSize=100; 
  97. d.CheckExt(obj) 
  98. </script> 
  99. </head> 
  100. <body> 
  101. <input name="" type="file" onchange="c(this)"/> 
  102. </body> 
  103. </html> 

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选