引用网址:
1.获得值
var editor=CKEDITOR.replace( 'editor1' );editor.document.getBody().getText(); //取得纯文本editor.document.getBody().getHtml(); //取得html文本CKEDITOR.instances.content.getData()//获得html文本content是textarea的name
2.设置
CKEDITOR.instances.content.setData("CCCTO");var editor = CKEDITOR.replace("content");editor.setData("CCCTO");
3.插入
CKEDITOR.instances.message.insertHtml('')
3.禁止粘贴
editor.on('paste', function() { return false;});或editor.on('instanceReady', function(e) { editor.on('paste', function() { return false; });});