FCKEditor仅在chrome中占用一个空格

时间:2011-11-21 07:03:35

标签: google-chrome fckeditor

enter image description here

Fckeditor仅在chrome中加载一个空格。在所有其他浏览器中,它不占用空格。

我尝试了下面的代码,但它只是崩溃了。

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

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

2 个答案:

答案 0 :(得分:4)

下面的代码解决了这个问题。

function FCKeditor_OnComplete(editorInstance) {


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

答案 1 :(得分:2)

编辑/ JS / fckeditorcode_gecko.js

编辑/ JS / fckeditorcode_ie.js

查找A=E[1]+' '+F[1]; 替换A=E[1]+''+F[1];