gpt4 book ai didi

javascript - this.getDoc() 在 FF 中使用 tinymce 为空

转载 作者:搜寻专家 更新时间:2023-11-01 04:26:18 26 4
gpt4 key购买 nike

我遇到的问题是,当我加载我的页面时,我立即收到错误:this.getDoc() is null

Editor.js 的函数getBody() 被调用,文档似乎不可用

getBody : function() {
return this.bodyElement || this.getDoc().body;
},

在这种情况下,getBody() 已被 gecko 代码块中的 destroy() 函数触发。

destroy : function(s) {
var t = this;

// One time is enough
if (t.destroyed)
return;

// We must unbind on Gecko since it would otherwise produce the pesky "attempt to run compile-and-go script on a cleared scope" message
if (isGecko) {
Event.unbind(t.getDoc());
Event.unbind(t.getWin());
Event.unbind(t.getBody()); // here is the relevant getBody() call
}

Destroy已经被tinymce.js的addUnload函数触发

o.func.call(o.scope, 1);

我该怎么做才能避免这个问题?

最佳答案

当我升级 jquery 时发生在我身上..

要解决它,只需将 jquery 升级到最新版本并将 tinymce 升级到最新版本..

我在网上搜索时找到了解决此问题的其他方法。尝试删除 filemanager、imagemanager 表单插件列表。如果设置不当,可能会导致一些问题。

关于javascript - this.getDoc() 在 FF 中使用 tinymce 为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15266250/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com