富文本编辑器
-
富文本编辑器,rich texteditor, 简称 rte, 它提供类似于 microsoftword 的编辑功能。常 用的富文本编辑器
KindEditor http://kindeditor.net/
UEditor http://ueditor.baidu.com/website/
CKEditor http://ckeditor.com/
引入富文本编辑器
初始化 kindeditor 编辑器
获取在controller.js 中获取文本编辑器内容
$scope.entity.goodsDesc.introduction=editor.html();
清空文本编辑器
function(response){
if(response.success){
alert("保存成功");
$scope.entity={};
editor.html('');//清空富文本编辑器
}else{
alert(response.message);
}
}引用编辑器
效果图











