如何在弹出窗口中使用jQuery在输入类型=“文件”中预览选定的图像?

前端之家收集整理的这篇文章主要介绍了如何在弹出窗口中使用jQuery在输入类型=“文件”中预览选定的图像?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Preview an image before it is uploaded16个答案在我的代码中,我允许用户上传图像。现在我想显示这个选择的图像作为预览在同一个弹出。我如何使用jQuery做它?

以下是我在我的弹出窗口中使用的输入类型。

HTML代码

<input type="file" name="uploadNewImage">

解决方法

Demo

HTML:

<form id="form1" runat="server">
   <input type='file' id="imgInp" />
   <img id="blah" src="#" alt="your image" />
</form>

jQuery

function readURL(input) {
    if (input.files && input.files[0]) {
        var reader = new FileReader();

        reader.onload = function (e) {
            $('#blah').attr('src',e.target.result);
        }

        reader.readAsDataURL(input.files[0]);
    }
}

$("#imgInp").change(function(){
    readURL(this);
});

Reference

原文链接:https://www.f2er.com/jquery/184120.html

猜你在找的jQuery相关文章