ckeditor 使用几点

Posted 楊柳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ckeditor 使用几点相关的知识,希望对你有一定的参考价值。

1.引用相关js

2.定义 id 为 editor1 的 area

 <textarea id="editor1" style="height: 380px; width: 900px"></textarea>

3.替换

 <script type="text/javascript">   
      var editor = CKEDITOR.replace("editor1",
       {
              language: ‘vi‘, height: ‘370px‘, width: ‘900px‘
         });
 </script>

4. 赋值和取值

//取值对应实例名【editor1】的值,getData方法
var content=CKEDITOR.instances.editor1.getData();
//实例名【editor1】赋值为空
CKEDITOR.instances.editor1.setData(‘‘);

 

以上是关于ckeditor 使用几点的主要内容,如果未能解决你的问题,请参考以下文章

移除 CKEditor 实例

WordPaster+ckeditor+phpcms+Word一键粘贴图片

将样式应用于 CKEditor 5 的 HTML 输出

当我进入Source视图时,如何跳转到CKEditor 4中的当前位置?

ListView优化的几点建议

ListView优化的几点建议