我的問題是,當我加載我的網頁我立刻收到錯誤是在FF零:this.getDoc() is null
this.getDoc()使用TinyMCE的
功能的Editor.js
getBody()
被調用和文件似乎是不可用
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
o.func.call(o.scope, 1);
我能做些什麼來避免這個問題的功能addUnload觸發?
+1謝謝你的回覆。我沒有使用filemanager和/或imagemanager(它們不在我的插件列表中)。關於jQuery和Tinymce。我可能能夠升級到latesttinymce版本,但由於jQuery與我們的CMS衝突,我不能更新jQuery – Thariama 2013-03-14 08:45:53