2013-02-20 53 views

回答

0

我通過檢查隊列中是否有文件來做到這一點。如果有,請執行uploadify並將false返回給.submit()。如果沒有文件,請返回.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; 
} 
相關問題