欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

富文本编辑器

程序员文章站 2023-12-23 12:54:58
...

富文本编辑器,Rich Text Editor,简称 RTE, 它提供类似于 Microsoft Word 的编辑功能。常用的富文本编辑器:

KindEditor    http://kindeditor.net/

UEditor     http://ueditor.baidu.com/website/

CKEditor    http://ckeditor.com/


在页面中添加JS代码,用于初始化kindeditor


<script type="text/javascript">
	var editor;
	KindEditor.ready(function(K) {
		editor = K.create('textarea[name="content"]', {
			allowFileManager : true
		});
	});
</script>

allowFileManager 【是否允许浏览服务器已上传文件】默认值是:false

提取kindeditor编辑器的内容

在goodsController.js中的add()方法中添加

$scope.entity.goodsDesc.introduction=editor.html();

清空kindeditor编辑器的内容

修改goodsController.js的add方法

function(response){
		if(response.success){
			alert("保存成功");
			$scope.entity={};
			editor.html('');//清空富文本编辑器
		}else{
			alert(response.message);
		}
}	



相关标签: 富文本

上一篇:

下一篇: