2

我已经使用readAsdataUrl javascript 函数读取了内存中的图像。现在我需要在现有页面中单击按钮时打开的弹出窗口中显示此图像。

我怎样才能做到这一点?有什么方法可以从内存中读取图像,然后在新的弹出窗口中显示它?

4

1 回答 1

0

检查这个 - http://www.html5rocks.com/en/tutorials/file/dndfiles/#toc-reading-files

似乎有你需要的例子:

<style>
  .thumb {
    height: 75px;
    border: 1px solid #000;
    margin: 10px 5px 0 0;
  }
</style>

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

<script>
  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);
</script>

只需用你想要的弹出窗口替换那个 div

于 2013-01-03T20:20:04.397 回答