ueditor编辑器的使用

// 获取编辑器内容(包括图片,视频,附件)
var content=UE.getEditor('editor').getContent();
$.ajax({
	     url:v_url,
	     async: true,
	     dataType: 'json',
	     type: 'post',
	     data: content,
	     success: function(data) {
        });  

// springMVC
publicvoid addNews(String content)  {
    String html = HtmlUtils.htmlUnescape(content);
}

  

原文地址:https://www.cnblogs.com/zhoucx66/p/5673475.html