-4
<!-- saved from url=(0022)http://internet.e-mail -->
<html>
<style>
  .thumb {
    height: 50%;
    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);

</script>
</html>

此代码在 Mozila 中运行良好,但在 IE8 中无法运行,因为 IE8 不支持 HTML5。需要哪些更改才能在 IE8 中正常运行代码?请提供详细信息。

4

1 回答 1

0

两个问题:

easy:
addEventListenerIE8及以下不支持,需要调用attachEvent(注意,这里有问题,需要查询全局事件对象,因为this这里没有绑定目标!!)。

var el = document.getElementById('files');
if (el.addEventListener) {
  el.addEventListener('change', handleFileSelect, false); 
} else if (el.attachEvent)  {
  el.attachEvent('onchange', handleFileSelect);
}

棘手:
Filereader API在 IE<=9 中不可用,因此您需要使用 flash 或类似的东西(Silverlight ftw:-D)来解决这个问题。这是垫片列表。列表中还有一个 Filereader shim 可能对您有用。

最后,使用现有的多上传脚本可能是最简单的解决方案。

于 2013-04-29T11:36:07.183 回答