リッチ テキスト エディター、RTE と呼ばれるリッチ テキスト エディターは、Microsoft Word と同様の編集機能を提供します。よく使用されるリッチ テキスト エディター
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>
<script type="text/javascript"> var editor; KindEditor.ready(function(K) { editor = K.create('textarea[name="content"]', { allowFileManager : true }); }); </script>
$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>
以上がリッチテキストエディターの紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。