我在我的一个项目中使用FCKeditor。
<textarea name="Content_Arabic" id="Content_Arabic" cols="35" rows="4" class="txtfield"><?php echo (stripslashes(stripslashes($_POST['Content'])));?></textarea>
<script type="text/javascript">
var editor = new ew_DHTMLEditor("Content_Arabic");
editor.create = function() {
var sBasePath = 'FCKeditor/';
var oFCKeditor = new FCKeditor('Content_Arabic', '100%', 350, 'Default');
oFCKeditor.BasePath = sBasePath;
oFCKeditor.ReplaceTextarea();
oFCKeditor.rtl;
oFCKeditor.ContentLangDirection='rtl';
this.active = true;
}
ew_DHTMLEditors[ew_DHTMLEditors.length] = editor;
ew_CreateEditor(); // Create DHTML editor(s)
//-->
</script>
这个加载的编辑器,但仍然是英式风格。
我希望它从右到左加载为阿拉伯语风格。
我在互联网上搜索但没有找到任何帮助。
答案 0 :(得分:1)
下面的解决方案假设您希望此解决方案静态地用于解决方案*中FCKEditor的所有实例。
只需编辑文件/path/to/your_fckeditor_installation_dir/fckeditor.js
并按如下所示更改以下属性:
FCKConfig.AutoDetectLanguage = false ;
FCKConfig.DefaultLanguage = 'ar' ;
的修改
从上面的代码中你只需要以下几行(删除其余部分):
var oFCKeditor = new FCKeditor('Content_Arabic', '100%', 350, 'Default');
oFCKeditor.BasePath = 'FCKeditor/';
oFCKeditor.ReplaceTextarea();
就是这样!
*如果您希望动态更改,则应根据these指南
更改您的方法