1.基本api
2.初步实现
1.官网下载ckeditor.js,然后在html内引入复制代码
html内容
<!----> <p>文本内容</p> 复制代码
js部分 基础的创建了ckeditor
ClassicEditor .create( document.querySelector( '#editor' ),{ }).then( editor => { //成功 这里面会有一个editor对象,会有各种方法,我写一些用到过的方法 editor.model.change( writer => { editor.setData('ckeditor
'); //初始化富文本框,里面存字符串 editor.getData(); //获取编辑框内的内容,传给后端 writer.insertText( '666', editor.model.document.selection.getFirstPosition() );//在文本光标处插入"666"字符 } ); }).catch( error => { //失败 console.error( error ); } );复制代码
效果