📜  使用输入文件作为 html 图像源 - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:21.845000             🧑  作者: 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]);
        }
    });
});