0
我有一個類型爲file
的輸入標籤。我用它從我的本地光盤獲取文件。我需要的是一種獲取和保存該文件的方式,以便將其發佈到服務器。如何從本地磁盤獲取文件,然後將其傳遞到POST方法以上載到服務器
<input type='file'>
//I now want to hold this file and pass this to this ajax post method
$.ajax({
type: "POST",
url: url, //I have URL, this isn't a problem
data: data, // do I place response here ?
success: function(){ alert('file posted')
dataType: dataType // ?
})
[jQuery Ajax File Upload]的可能重複(http://stackoverflow.com/questions/2320069/jquery-ajax-file-upload) –