2012-01-08 78 views
12

我想抓住上傳的文件<input type='file'>標籤。jQuery抓取一個文件上傳與輸入類型='文件'

當我做$('#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); 
} 

回答

13

使用event.target.fileschange事件來檢索文件的實例。

$('#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/

該解決方案使用不是所有的瀏覽器支持的文件API - 見http://caniuse.com/#feat=fileapi

+4

附加信息:單個上傳的文件總是在'e.target.files [0]'中,此時您不需要'for'循環。 – DanFromGermany 2014-03-28 13:15:12

3

這很可能是指HTML5 files屬性。請參閱w3和樣本jsfiddle

+0

嗯,所以JavaScript圖像上傳不可能與舊的瀏覽器?恥辱:( – 2012-01-08 05:17:09

+1

)你總是可以使用一個規則的表單,目標是一個iframe,它不太適合編碼,但可以工作。 – 2012-01-08 05:20:49

相關問題