控件
e=self._editor;
e.hasContents();//编辑器中是否有内容
console.log(e.getContent());//获取编辑器中内容 html格式
console.log(e.getContentTxt());//获取编辑器中的纯文本信息
console.log(e.setContent("<h1>发货的费</h1>"));//给编辑器添加内容 html方式/文字方式
保存数据库及查看
//1. 获取前端传过来的html内容【图片已经自动保存在服务器,使用时以链接的形式引用】,图片的路径双引号已被spring mvc自动转义,。
String html = "<p>adsfa<img src=\"www.baidu.com.hah.png\" /></p>";
//2. 使用HtmlUtils处理html的标签,如尖括号可能会被mysql误解:将所有特殊字符转为十六进制的数字
String temp = HtmlUtils<