jQuery抓取一个用input type ='file'上传的文件

时间:2012-01-08 04:04:12

标签: javascript jquery

我想抓取在<input type='file'>代码中上传的文件。

当我执行$('#inputId')。val()时,它只获取文件的名称,而不是实际文件本身。

我正试图遵循这个:

http://hacks.mozilla.org/2011/03/the-shortest-image-uploader-ever/

function upload(file) {

  // file is from a <input> tag or from Drag'n Drop
  // Is the file an image?

  if (!file || !file.type.match(/image.*/)) return;

  // It is!
  // Let's build a FormData object

  var fd = new FormData();
  fd.append("image", file); // Append the file
  fd.append("key", "6528448c258cff474ca9701c5bab6927");
  // Get your own key: http://api.imgur.com/

  // Create the XHR (Cross-Domain XHR FTW!!!)
  var xhr = new XMLHttpRequest();
  xhr.open("POST", "http://api.imgur.com/2/upload.json"); // Boooom!
  xhr.onload = function() {
    // Big win!
    // The URL of the image is:
    JSON.parse(xhr.responseText).upload.links.imgur_page;
   }
   // Ok, I don't handle the errors. An exercice for the reader.
   // And now, we send the formdata
   xhr.send(fd);
 }

2 个答案:

答案 0 :(得分:14)

使用event.target.files change事件来检索文件实例。

$('#inputId').change(function(e) {
  var files = e.target.files; 

  for (var i = 0, file; file = files[i]; i++) {
    console.log(file);
  }
});

请点击此处了解详情:http://www.html5rocks.com/en/tutorials/file/dndfiles/

此解决方案使用所有浏览器都不支持的File API - 请参阅http://caniuse.com/#feat=fileapi

答案 1 :(得分:3)

这可能是指HTML5 files属性。请参阅w3并示例jsfiddle