码迷,mamicode.com
首页 > Web开发 > 详细

上传图片在前台预览

时间:2016-06-24 12:42:38      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:

前端做做图片上传功能时,经常想上传完后可以直接预览,这时候通常有两种方式,一种就是转成base64编码,然后展示出来。

document.getElementById(file).onchange = function(){
        var reader = new FileReader();
        reader.readAsDataURL(this.files[0]);
        reader.onload = function(e) {
            document.getElementById(img).src = e.target.result;
        }
    }    

 

当然还有另外一种方式,那就是用getObjectURL实现:

function getObjectURL(file) {
        var url = null;
        if (window.createObjectURL != undefined) {
            url = window.createObjectURL(file);
        } else if (window.URL != undefined) {
            url = window.URL.createObjectURL(file);
        } else if (window.webkitURL != undefined) {
            url = window.webkitURL.createObjectURL(file);
        }
        return url;
    }
document.getElementById(file).onchange = function(){
    document.getElementById(‘img‘).src = getObjectURL(this.files[0]);
}    

兼容性都不好只能兼容到IE10

上传图片在前台预览

标签:

原文地址:http://www.cnblogs.com/bruce-gou/p/5613623.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!