首頁  >  文章  >  web前端  >  富文本編輯器的介紹

富文本編輯器的介紹

一个新手
一个新手原創
2017-09-23 09:45:411751瀏覽


富文本編輯器

  • 富文本編輯器,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(&#39;textarea[name="content"]&#39;, {
    allowFileManager : true

    });
});
</script>

取得在controller.js 中取得文字編輯器內容

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

清空文字編輯器

function(response){

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

#引用編輯器

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

效果圖

富文本編輯器的介紹

以上是富文本編輯器的介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn