2

我有一个在 jQueryUI 模式对话框中启动的 PLUpload。在对话框中启动后,PlUpload 的拖放功能仍然有效,但单击启动文件浏览器则无效。

以下代码的 JsFiddle。JsFiddle 包括我的应用程序正在使用的 jQuery 和 jQuery UI 版本:http: //jsfiddle.net/QqPLV/1/

HTML:

<a href="#" id="add-file-link">Open Uploader As Dialog</a>

<div id="AddFilePopup" title="Add A File">
    <div id="drop-target">After opening in a dialog clicking here does nothing, but drag and drop in Chrome still works...</div>
    <div id="plupload-nohtml5">No runtime found, your browser doesn't support HTML5 drag &amp; drop upload.</div>
    <div id="plupload-filelist"></div>
</div>

CSS:

  #drop-target {
      border: 3px dashed #CCC;
      text-align: center;
      color: #999;
      font-size: 16px;
      padding : 50px;
      cursor: pointer;
  }
  #debug {
      margin-top: 20px;
  }
  #plupload-debug {
      border : 1px Solid #600;
      padding : 5px;
      margin : 5px;
  }

Javascript:

$(function () {
    $('#add-file-link').click(function () {
        $('#AddFilePopup').dialog({
            modal: true,
            width: 600
        });

        uploader.refresh();  //this fixes IE10 not being able to click to add files
        return false;
    });

    initPlUpload();
});


function initPlUpload() {
    uploader = new plupload.Uploader({
        runtimes: 'html5',
        drop_element: 'drop-target',
        browse_button: 'drop-target',
        max_file_size: '4mb',
        upload: "upload.php"
    });

    uploader.bind('Init', function (up, params) {
        if (uploader.features.dragdrop) {
            $('#plupload-nohtml5').hide();
        };
    });

    uploader.bind('FilesAdded', function (up, files) {
        for (var i in files) {
            $('#plupload-filelist').append('<div id="' + files[i].id + '">- ' + files[i].name + ' - ' + files[i].id + ' (' + plupload.formatSize(files[i].size) + ')</div>');
        }
    });

    uploader.init();
    }

我添加了行

uploader.refresh();

到点击处理程序,并修复了 IE10,但 Chrome 仍然拒绝合作。甚至输入 uploader.refresh(); 进入 Chrome 的控制台并不能恢复上传者的浏览功能......

编辑:删除一些不需要重现问题并使其更难阅读的行。

4

1 回答 1

4

我有同样的问题,并且有一个调整。当您将 HTML5 作为上传引擎时会发生这种情况,因此要解决您需要添加样式的技巧:

.plupload{ z-index : 99999; }

或者,如果你喜欢在飞行中......

$("div.plupload").css({"z-index":99999});

这应该可以解决您的问题。

另一件事是您在创建窗口之前破坏了上传程序,因此它不起作用。如果你想在对话框中执行 pluploader,我建议你使用参数open,所以当对话框初始化时,它会在其上运行 pluploader 的行为。

于 2013-06-18T18:55:22.170 回答