我正在使用一些 jquery 文件上传插件。我可以从我的桌面上传一些文件(如相关站点上的演示),但是当我必须验证我的表单时,我得到一个空文件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"
.