input file框上传显示图片

前端之家收集整理的这篇文章主要介绍了input file框上传显示图片前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<p style="Box-sizing: border-Box; margin-top: 0px; margin-bottom: 19.7969px; color: rgb(51,51,51); white-space: normal;">input file上传图片显示图片


$('.a').change(function(e) {
    var _URL = window.URL || window.webkitURL;
    var file, img;
    if ((file = this.files[0])) {
        img = new Image();
        img.onload = function() {
            $('.img').attr('src', this.src);
            console.log(this.width)
        };
        img.src = _URL.createObjectURL(file);
    }
})


猜你在找的jQuery相关文章