UEditor編輯器引用跟設定(持續更新)
阿新 • • 發佈:2018-11-01
<!-- 載入編輯器的容器 --> <script id="container" name="content" type="text/plain"> {$res.content} 這裡輸入變數,會出現在編輯框裡 </script> <!-- 配置檔案 --> <script type="text/javascript" src="/ueditor/ueditor.config.js"></script> <!-- 編輯器原始碼檔案 --> <script type="text/javascript" src="/ueditor/ueditor.all.js"></script> <!-- 例項化編輯器 --> <script type="text/javascript"> var ue = UE.getEditor('container',{ initialFrameWidth :1000,//設定編輯器寬度 initialFrameHeight:500,//設定編輯器高度 autoHeightEnabled: false,//是編輯器高度固定 }); ue.ready(function(){ //設定編輯器的內容 ue.setContent('程式碼點選左上角HTML!'); //獲取html內容 var html = ue.getContent(); //獲取純文字內容 var txt = ue.getContentTxt(); }); </script>