首頁 > web前端 > js教程 > 主體

富文本編輯器的介紹

一个新手
發布: 2017-09-23 09:45:41
原創
1739 人瀏覽過


富文本編輯器

  • 富文本編輯器,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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!