我遇到的问题是,当我加载页面时,我立即收到错误消息:this.getDoc() is null
调用gets函数getBody()
,Editor.js
文档好像不可用
getBody : function() {
return this.bodyElement || this.getDoc().body;
},
在这种情况下,getBody() 已由壁虎代码块中的 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
}
销毁已由 tinymce.js 的函数 addUnload 触发
o.func.call(o.scope, 1);
我能做些什么来避免这个问题?