// 获取编辑器内容(包括图片,视频,附件)
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);
}