基本使用
// 下载 ckeditor
解压ckeditor 文件把文件放在webroot 下
在jsp 文件写入
<link rel="stylesheet" type="text/css" href="<%=basePath %>ckeditor/samples/sample.css">
<script type="text/javascript" src="<%=basePath %>ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="<%=basePath %>ckeditor/config.js"></script>
<textarea class="ckeditor" cols="80" id="TextArea1" name="TextArea1" rows="10" style="margin-top: 30px">
</textarea>
class="ckeditor" 固定写法
这样就可以了