2011-11-21 41 views
1

enter image description hereFCKEditor的服用一個空格中鉻只

FCKEDITOR承擔負載一個空格中鉻only.In它沒有采取空格所有其他瀏覽器。

我嘗試了下面的代碼,但它只是崩潰鉻。

function FCKeditor_OnComplete(editorInstance) { 
editorInstance.Events.AttachEvent('OnFocus', FCKeditor_OnFocus) ; 
} 

function FCKeditor_OnFocus(editorInstance) 
{ 
    editorInstance.SetHTML(""); 
} 

回答

4

下面的代碼解決了這個問題。

function FCKeditor_OnComplete(editorInstance) { 


if(editorInstance.GetHTML() == ' ') 
    { 
     jQuery(editorInstance.EditorDocument.body).html(''); 
    } 
} 
2

編輯/ JS/fckeditorcode_gecko.js

編輯/ JS/fckeditorcode_ie.js

尋找A=E[1]+' '+F[1]; 更換A=E[1]+''+F[1];

+1

這是如何解決這個問題?你能在你的解決方案中更完整嗎? – KLee1

+0

對不起,我不會說英語(來自俄羅斯)。 我們需要找到該文件夾​​FСKEDITOR 編輯/ JS/fckeditorcode_gecko.js 編輯/ JS/fckeditorcode_ie.js 兩個文件,他們發現代碼 'A = E [1] + ' ' + F [1] ;' 並替換爲 'A = E [1] +''+ F [1];' – 64j

相關問題