就是更换皮肤的问题  再网上搜了一下是改在fckconfig.js里设置FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/office2003/' ;
可是改了以后没有任何效果 请教高手 

解决方案 »

  1.   

    首先你确认一下你FCK目录下有没有editor\skins下是存在office2003的其次你初始化FCK编辑器的时候指定了BasePath
    var sBasePath = '${widgethome}/fckeditor/';
    var oEditor = new FCKeditor('fcktextContent'); //构建FCKeditor对象,这里是采取textarea的构造方式,所以编辑器实例名就是textarea对象的id或者name值
    oEditor.BasePath = sBasePath ; //编辑器的基路径,注意,尽量不要使用相对路径.最好能用相对于站点根路径的表示方法,要以/结尾
    oEditor.ToolbarSet = 'Text' ; //文本编辑器
    oEditor.Width = 600; //指定编辑器的宽度
    oEditor.Height = 300; //指定编辑器的高度
    oEditor.ReplaceTextarea(); //初始化编辑器