Html5和Js实现图片上传前即时预览

  1. <!DOCTYPE html>  
  2.     <html>  
  3.     <head>  
  4.     <title>HTML5上传图片预览</title>  
  5.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
  6.     <script src="http://www.codefans.net/ajaxjs/jquery-1.6.2.min.js"></script>  
  7.     </head>  
  8.     <body>  
  9.     <h3>请选择图片文件:JPG/GIF</h3>  
  10.     <form name="form0" id="form0" >  
  11.     <input type="file" name="file0" id="file0" multiple="multiple" /><br><img src="" id="img0" >  
  12.     </form>  
  13.     <script>    
  14.     $("#file0").change(function(){  
  15.         var objUrl = getObjectURL(this.files[0]) ;  
  16.         console.log("objUrl = "+objUrl) ;  
  17.         if (objUrl) {  
  18.             $("#img0").attr("src", objUrl) ;  
  19.         }  
  20.     }) ;  
  21.     //建立一个可存取到该file的url  
  22.     function getObjectURL(file) {  
  23.         var url = null ;   
  24.         if (window.createObjectURL!=undefined) { // basic  
  25.             url = window.createObjectURL(file) ;  
  26.         } else if (window.URL!=undefined) { // mozilla(firefox)  
  27.             url = window.URL.createObjectURL(file) ;  
  28.         } else if (window.webkitURL!=undefined) { // webkit or chrome  
  29.             url = window.webkitURL.createObjectURL(file) ;  
  30.         }  
  31.         return url ;  
  32.     }  
  33.     </script>  
  34.     </body>  
  35.     </html>

发布日期:

所属分类: Css/Html5 标签:   


没有相关文章!