Plupload - 如何打开多次并刷新列表?

时间:2011-07-27 16:33:29

标签: javascript jquery

JS:

$(".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
    });
});
好的,第一次工作完美,但是如果我点击不同的地方再次打开,列表就没有重新加载。

它总是一样的,重新加载我需要刷新页面的列表。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分: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();
});