0

我正在使用一些 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".

4

1 回答 1

1

这是两个基本选项,您可以在其中检查输入控件是否有文件,然后继续执行您想要执行的操作。

.bind('fileuploadadd', function (e, data) 
{
/*Check here whether the user selected file or not*/
})
.bind('fileuploadsubmit', function (e, data) 
{
 /*Check here whether the user selected file or not before submitting your form*/
})
于 2013-09-13T09:59:12.607 回答