2011-07-27 45 views
0

JS:Plupload - 如何打開多個時間並刷新列表?

$(".butAnexarDoc").live("click", function(){ 
    $("#anexarArquivos").plupload({ 
     // General settings 
     runtimes  : 'html5,html4', 
     url    : 'js/plupload/examples/upload.php', 
     max_file_size : '1000mb', 
     max_file_count : 20, // user can add no more then 20 files at a time 
     chunk_size  : '1mb', 
     unique_names : false, 
     multiple_queues : true 
    }); 
}); 

OK,第一次工作完美,但如果我在diferent地方點擊再次打開,它沒有被重新加載列表。

它總是相同的,重新加載列表我需要刷新頁面。

我該如何解決這個問題?

回答

0

問題解決:

$(".butAnexarDoc").live("click", function(){ 
    $("#anexarArquivos").plupload({ 
     // General settings 
      runtimes  : 'html5,html4', 
      url    : 'js/plupload/examples/upload.php', 
      max_file_size : '1000mb', 
      max_file_count : 20, // user can add no more then 20 files at a time 
      chunk_size  : '1mb', 
      unique_names : false, 
      multiple_queues : true 
    }); 

    // set to getUploader 
    var uploader = $('#anexarArquivos').plupload('getUploader'); 
    // use splice to clean the list 
    uploader.splice(); 
});