CKeditor的简单使用

时间:2022-03-15 16:55:26

由于项目中要使用ckeditor 做个推荐功能,由于值设定到文本内容,就选择最基本的使用。

使用的版本为当前最新版本4.4.7,你需要下载两部分,一个是前台使用,一个是后台使用,

你可以到我的网盘中下载,下载地址为:ckeditor_4.4.7_basicckeditor-java-core-3.5.3

你也可以选择到官网下载最新版本,地址为:http://ckeditor.com/download

1.把ckeditor的basic解压后文件放到工程中,在你的jsp页面中引入ckeditor.js文件,

在body中写入<textarea cols="80" id="editor1" name="editor1" rows="20"></textarea>

最后在</body>紧挨上一行写入如下代码:

<ckeditor:replace replace="editor1" basePath="/ckeditor/" />

常用取值和赋值有:

CKEDITOR.instances.editor1.getData()

CKEDITOR.instances.editor1.setData()

两种方法。

详细的请下载我整理的文件,ckeditor笔记