即使没有使用Uploadify选择文件,也要运行服务器脚本

时间:2013-02-20 23:07:20

标签: jquery uploadify

我正在使用带有表单的Uploadify flash版本来选择上传文件。它工作正常,除非用户在队列中没有文件,然后上传者脚本不会被命中。无论是否已选择上传文件,我都想点击这个。我有什么想法可以做到这一点吗?

1 个答案:

答案 0 :(得分:0)

我通过检查队列中是否有文件来做到这一点。如果有,执行uploadify并将false返回到.submit()。如果没有文件,则返回true .submit()

$('#file-upload-form').submit(uploadFiles);

uploadFiles = function(event){

        //check if files in the queue, if so, execute uploadify and return false
        if(checkIfFile()){
          $('#uploadify-button-wrapper').uploadify("upload", "*");  
          return false;
        }    

// no file so return true
return true;
}