首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

Fckeditor的施用(五):配置语言

2012-11-23 
Fckeditor的使用(五):配置语言1.创建myconfig.js 内容:FCKConfig.AutoDetectLanguage false FCKConfig.

Fckeditor的使用(五):配置语言

1.创建myconfig.js

内容:

FCKConfig.AutoDetectLanguage = false ;
FCKConfig.DefaultLanguage = "en" ;

注:语言设为英文,默认是中文的。

2.配置myconfig.js

方法一 :修改WebRoot/fckeditor/fckconfig.js中的FCKConfig.CustomConfigurationsPath = '' ;为FCKConfig.CustomConfigurationsPath = '项目名/myconfig.js' ;

法二

<script type="text/javascript">
? ??? ??? //第一种方法
??? ??? var oFCKeditor = new FCKeditor('FCKeditor1');
??? ??? oFCKeditor.BasePath = "<%=request.getContextPath()%>/fckeditor/";
??? ??? oFCKeditor.Width = "70%";
??? ??? oFCKeditor.Height = "150";
??? ??? oFCKeditor.Value = "default"

??? ??? //此处设置配置
??? ??? oFCKeditor.Config["CustomConfigurationsPath"] = "<%=request.getContextPath()%>/myconfig.js"? ;
??? ??? oFCKeditor.Create();
??? </script>

热点排行