RTE라고도 불리는 Rich Text Editor는 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!