javascript-CKEditor RTL问题
作者:互联网
我在使用JQuery适配器初始化的CKEditor实例中添加了language:’ar’,contentsLangDirection:’rtl’,contentsLanguage:’ar’选项.但是文本仍然保持对齐.
它声明了< html>带有dir =’rtl’和lang =’ar’的标签,但在每个< p>标记,它具有内联text-align:left样式.
我如何摆脱这种风格?
解决方法:
尝试这个 :
<script type="text/javascript">
CKEDITOR.config.contentsLangDirection='rtl';
CKEDITOR.replace('editorX');
</script>
标签:ckeditor,arabic,jquery-plugins,javascript,jquery 来源: https://codeday.me/bug/20191023/1915350.html