0

我使用带有表单的 Uploadify flash 版本来选择性地上传文件。它工作正常,除非用户在队列中没有文件,然后上传脚本不会被命中。无论是否选择了要上传的文件,我都想点击它。任何想法我怎么能做到这一点?

4

1 回答 1

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;
}
于 2013-02-21T11:22:36.290 回答