图片上传预览 支持html5的浏览器

<img src="" width="100px" height="100px"/>
<input type="file" onchange="showPreview(this)"/>
//图片预览的
function showPreview(source){
    var file = source.files[0];
    if(window.FileReader) {
        var fr = new FileReader();
        fr.onloadend = function(e) {
            $(source).parent().children("img").attr("src",e.target.result);
        };
        fr.readAsDataURL(file);
    }
}

 

posted @ 2017-01-16 10:44  上古时期的码农  阅读(234)  评论(0编辑  收藏  举报