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

富文本编辑器的介绍

程序员文章站 2022-04-20 09:40:03
...


富文本编辑器

  • 富文本编辑器,Rich TextEditor, 简称 RTE, 它提供类似于 MicrosoftWord 的编辑功能。常 用的富文本编辑器

    KindEditor http://kindeditor.net/

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

    CKEditor http://ckeditor.com/

引入富文本编辑器

<link rel="stylesheet" href="../plugins/kindeditor/themes/default/default.css" />
<script charset="utf-8" src="../plugins/kindeditor/kindeditor-min.js"></script>
<script charset="utf-8" src="../plugins/kindeditor/lang/zh_CN.js"></script>

初始化 kindeditor 编辑器

<script type="text/javascript">
var editor;
KindEditor.ready(function(K) {

    editor = K.create('textarea[name="content"]', {
    allowFileManager : true

    });
});
</script>

获取在controller.js 中获取文本编辑器内容

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

清空文本编辑器

function(response){

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

引用编辑器

   <textarea  name="content" style="width:800px;height:400px;visibility:hidden;" ></textarea>

效果图

富文本编辑器的介绍

以上就是富文本编辑器的介绍的详细内容,更多请关注其它相关文章!