jquery file upload pluginを使用しています。デスクトップからいくつかのファイルをアップロードできます (関連サイトのデモのように) が、フォームを検証する必要がある場合、空のファイルが表示されますinput
。どうしてですか?
私は次のようなものを持っています
<button class="add-on" type="button"><?php echo _('Add...') ?></button>
<input type="file" class="input-file-upload" name="image" size="40" />
をクリックしてbutton
ファイルを追加し、アップロードを開始します
$('#fileupload').fileupload({
// Uncomment the following to send cross-domain cookies:
//xhrFields: {withCredentials: true},
url: 'myurl',
progressall: function (e, data) {
var progress = parseInt(data.loaded / data.total * 100, 10);
$('#progress .bar').css(
'width',
progress + '%'
);
}
});
デスクトップからのこのアップロードの最後に、button type="submit"
.