📌  相关文章
📜  输入 type="file" 并显示图像 - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:30.884000             🧑  作者: Mango

代码示例2
$('document').ready(function () {
    $("#imgload").change(function () {
        if (this.files && this.files[0]) {
            var reader = new FileReader();
            reader.onload = function (e) {
                $('#imgshow').attr('src', e.target.result);
            }
            reader.readAsDataURL(this.files[0]);
        }
    });
});