search

Home  >  Q&A  >  body text

javascript - How to preview uploaded images?

Similar to this kind of uploading pictures, you can also preview the display. How should I write the front end? Is there any similar code that you can provide me with? Thanks

滿天的星座滿天的星座2724 days ago848

reply all(4)I'll reply

  • 大家讲道理

    大家讲道理2017-06-13 09:26:13

    var fr = new FileReader(),
        file = document.getElementById("file"),
        img = document.createElement("img");
    file.onchange = function(e){
        fr.onload = function(e){
            var res = this.result;
            img.src = res;
            document.body.appendChild(img);//显示
        };
        
        fr.readAsDataURL(file.files[0]);//读取文件
    };

    reply
    0
  • ringa_lee

    ringa_lee2017-06-13 09:26:13

    web uploader.js or FileReader API

    reply
    0
  • 扔个三星炸死你

    扔个三星炸死你2017-06-13 09:26:13

    I have written a preview of a mall product image before. The idea is very simple. I don’t know if it will be helpful to you:
    1. The uploaded image must display a small thumbnail on the web page;
    2. Backstage (we were In the background, you can also think of other ways) to store two pictures, a small thumbnail and a previewed high-definition large picture;
    3. When you click on the small thumbnail, use a modal box to display the large high-definition picture.

    reply
    0
  • 给我你的怀抱

    给我你的怀抱2017-06-13 09:26:13

    Two demos: Click event https://github.com/treeandgra...
    Picture drag https://github.com/treeandgra...

    reply
    0
  • Cancelreply