jquery+html5實現單張圖片上傳預覽

js:html

if (window.File && window.FileReader && window.FileList && window.Blob){
//Blob是計算機界通用術語之一,全稱寫做:BLOB (binary large object),表示二進制大對象。
    //所有支持
    function handleFileSelect(evt) {
        var files = evt.target.files, f = files[0];
            if (!/image\/\w+/.test(f.type)){
                 alert("請確保文件爲圖像類型");
                 return false;
            }
            var reader = new FileReader();
            reader.onload = (function(theFile) {
            return function(e) {
                var show_pic = document.getElementById("show_pic");
                show_pic.src = e.target.result;
            };
            })(f);
            reader.readAsDataURL(f);
    }
    document.getElementById('files').addEventListener('change', handleFileSelect, false);
    }else {
    alert('該瀏覽器不所有支持File APIs的功能');
}

html:瀏覽器

<input type="file" id="files" name="files[]" multiple="">
<img src="" id="show_pic">
相關文章
相關標籤/搜索