gpt4 book ai didi

php - FCKeditor 阿拉伯语未出现

转载 作者:行者123 更新时间:2023-12-01 04:59:19 24 4
gpt4 key购买 nike

我在我的一个项目中使用 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>

这个已加载的编辑器,但它仍然是英文风格。

我希望它以阿拉伯语言风格加载,从右到左。

最佳答案

下面的解决方案假设您希望为解决方案中的所有 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 更改您的方法指南

关于php - FCKeditor 阿拉伯语未出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11637928/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com