我很jquery文件上傳插件struckgeling上傳我的文件,只要我在我的輸入字段中選擇文件。自定義文件上傳按鈕與blueimp jquery文件上傳
我想有一個cusom提交按鈕,上傳的文件..
我怎樣才能做到這一點?
標記:
<span>Add File</span>
<input id="fileupload" type="file" multiple="" data-url="upload.ashx" name="files[]" />
<label for="file_name">Name:</label>
<input type="text" name="file_name" id="file_name" />
<input type="button" id="uploadFileBtn" value="Upload" />
的Javascript:
$('#fileupload').fileupload(
{
dataType: 'json',
done: function (e, data) {
alert("success");
}
});
你能分享一下你的代碼嗎? –
@ martin-g看看這個問題該怎麼做:http://stackoverflow.com/questions/13304838/how-to-upload-a-file-only-once-with-jquery-file-upload-plugin –
我發現了另一種更好的方法來處理ajax文件上傳。我正在使用jQuery表單插件。它的工作原理與常規格式一樣,可以處理文件輸入。 http://www.malsup.com/jquery/form/ – ffffff01