HTML5 上傳前預覽

jopen 9年前發布 | 10K 次閱讀 JavaScript HTML5

    <!DOCTYPE html>  
    <html>  
    <head>  
    <title>HTML5上傳圖片預覽</title>  
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
    <script src="http://www.codefans.net/ajaxjs/jquery-1.6.2.min.js"></script>  
    </head>  
    <body>  
    <h3>請選擇圖片文件:JPG/GIF</h3>  
    <form name="form0" id="form0" >  
    <input type="file" name="file0" id="file0" multiple="multiple" /><br><img src="" id="img0" >  
    </form>  
    <script>    
    $("#file0").change(function(){  
        var objUrl = getObjectURL(this.files[0]) ;  
        console.log("objUrl = "+objUrl) ;  
        if (objUrl) {  
            $("#img0").attr("src", objUrl) ;  
        }  
    }) ;  
    //建立一個可存取到該file的url  
    function getObjectURL(file) {  
        var url = null ;   
        if (window.createObjectURL!=undefined) { // basic  
            url = window.createObjectURL(file) ;  
        } else if (window.URL!=undefined) { // mozilla(firefox)  
            url = window.URL.createObjectURL(file) ;  
        } else if (window.webkitURL!=undefined) { // webkit or chrome  
            url = window.webkitURL.createObjectURL(file) ;  
        }  
        return url ;  
    }  
    </script>  
    </body>  
    </html>  

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!