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 使用几点的主要内容,如果未能解决你的问题,请参考以下文章