Plupload 在尝试启动时抛出错误

Plupload throws an error when trying to initiate

使用plupload v2 出现错误:

Uncaught TypeError: Failed to execute 'getComputedStyle' on 'Window': parameter 1 is not of type 'Element'.

代码示例:

<script type="text/javascript">
    $(document).ready(function() {
        var uploader = new plupload.Uploader({
            browse_button: $('#chunked_file'),
            url: 'uploader.php'
        });

        uploader.init();
    );
</script>

在选择 browse_button DOM 元素时使用普通 JavaScript 解决了问题,或者只需选择 browse_button: 'chunked_file'.

似乎 plupload 不支持 jQuery 作为选择器。