您现在的位置:首页 >> 前端 >> 内容

前端本地读取图片

时间:2017/8/21 9:34:00 点击:

  核心提示:前言现在我们需要用户上传图片之后能实现实时预览依据HTML5的FileReader,可以使用新的API打开本地文件读出的图片放在list里面展示出来bodyinput type=file id=fil...

前言

现在我们需要用户上传图片之后能实现实时预览

依据HTML5的FileReader,可以使用新的API打开本地文件

读出的图片放在list里面展示出来

<body>
  <input type="file" id="files" name="files[]" multiple />
  <output id="list"></output>
</body>

js:

function handleFileSelect(evt) {
    var files = evt.target.files; // FileList object

    // Loop through the FileList and render image files as thumbnails.
    for (var i = 0, f; f = files[i]; i++) {

      // Only process image files.
      if (!f.type.match('image.*')) {
        continue;
      }

      var reader = new FileReader();

      // Closure to capture the file information.
      reader.onload = (function(theFile) {
        return function(e) {
          // Render thumbnail.
          var span = document.createElement('span');
          span.innerHTML = ['<img class="thumb" src="', e.target.result,
                            '" title="', escape(theFile.name), '"/>'].join('');
          document.getElementById('list').insertBefore(span, null);
        };
      })(f);

      // Read in the image file as a data URL.
      reader.readAsDataURL(f);
    }
  }

  document.getElementById('files').addEventListener('change', handleFileSelect, false);

 

作者:网络 来源:young_Emil