1

当我在 Firefox(仅 Firefox)中使用编辑器时。

控制台不断给我随机脚本的错误 0x80004005。

例如,如果我的页面中有 facebook 的 sdk,错误将来自该 jssdk,

如果我删除 sdk,错误将从 Redactor.min.js 通过...

这是我在 Redactor.min.js 中的所有 ajax 内容

handler: function()
        {
            $.ajax({
                url: this.opts.handler,
                type: 'post',
                data: 'redactor=' + escape(encodeURIComponent(this.getCode())),
                success: $.proxy(function(data)
                {
                    this.setCode(data);
                    this.syncCode();

                }, this)
            });

        },



// dragupload
                if ($('#redactor_file').size() !== 0)
                {
                    $('#redactor_file').dragupload(
                    {
                        url: this.opts.imageUpload,
                        success: $.proxy(this.imageUploadCallback, this)
                    });
                }

                // ajax upload
                this.uploadInit('redactor_file', { auto: true, url: this.opts.imageUpload, success: $.proxy(this.imageUploadCallback, this)  });

                $('#redactor_upload_btn').click($.proxy(this.imageUploadCallbackLink, this));

            }, this);

            this.modalInit(RLANG.image, this.opts.path + '/plugins/image.html', 570, handler, true);

        },


$.ajax({
                dataType: 'html',
                type: 'get',
                url: url,
                success: $.proxy(function(data)
                {...
4

0 回答 0