ThinkPHP中使用Ueditor富文本编辑器

这篇文章主要介绍了ThinkPHP中使用Ueditor富文本编辑器,需要的朋友可以参考下

具体插件下载:

http://ueditor.baidu.com/website/download.html#ueditor

UEditor官方文档:

http://ueditor.baidu.com/website/document.html

之前于 "ThinkPHP-代码" 案例中发布版本:

http://www.thinkphp.cn/code/175.html

UEditor解压于:PUBLIC/Ueditor下(同级目录有:Common,Conf,Lib,Tpl等)

例:在Tpl/model/model.html :

  1. <html>
  2. <title>Ueditor文本编辑器</title>
  3. <head>
  4. <title>完整demo</title>
  5. <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
  6. <load href="__PUBLIC__/Ueditor/ueditor.config.js" />
  7. <load href="__PUBLIC__/Ueditor/ueditor.all.min.js" />
  8. <!--使用版-->
  9. <!--<script type="text/javascript" charset="utf-8" src="../ueditor.all.js"></script>-->
  10. <!--开发版-->
  11. <!--<script type="text/javascript" charset="utf-8" src="editor_api.js"> </script>-->
  12. <!--建议手动加在语言,避免在ie下有时因为加载语言失败导致编辑器加载失败-->
  13. <!--这里加载的语言文件会覆盖你在配置项目里添加的语言类型,比如你在配置项目里配置的是英文,这里加载的中文,那最后就是中文-->
  14. <load href="__PUBLIC__/Ueditor/lang/zh-cn/zh-cn.js" />
  15. <style type="text/css">
  16. .clear {
  17. clear: both;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div>
  23. <form name='MyForm' method='POST' action="__URL__/message_insert" >
  24. <script name="editor" type="text/plain" >
  25. 从数据库中取出文章内容打印到此处!!!
  26. </script>
  27. </form>
  28. </div>
  29. <div >
  30. <div>
  31. <button onclick="getAllHtml()">获得整个html的内容</button>
  32. <button onclick="getContent()">获得内容</button>
  33. <button onclick="setContent()">写入内容</button>
  34. <button onclick="setContent(true)">追加内容</button>
  35. <button onclick="getContentTxt()">获得纯文本</button>
  36. <button onclick="getPlainTxt()">获得带格式的纯文本</button>
  37. <button onclick="hasContent()">判断是否有内容</button>
  38. <button onclick="setFocus()">使编辑器获得焦点</button>
  39. </div>
  40. <div>
  41. <button onclick="getText()">获得当前选中的文本</button>
  42. <button onclick="insertHtml()">插入给定的内容</button>
  43. <button onclick="setEnabled()">可以编辑</button>
  44. <button onclick="setDisabled()">不可编辑</button>
  45. <button onclick=" UE.getEditor('editor').setHide()">隐藏编辑器</button>
  46. <button onclick=" UE.getEditor('editor').setShow()">显示编辑器</button>
  47. <button onclick=" UE.getEditor('editor').setHeight(300)">设置编辑器的高度为300</button>
  48. </div>
  49. </div>
  50. <div>
  51. <button onclick="createEditor()"/>
  52. 创建编辑器</button>
  53. <button onclick="deleteEditor()"/>
  54. 删除编辑器</button>
  55. <button onclick="submitEditor()"/>
  56. 提交</button>
  57. </div>
  58. </body>
  59. <script type="text/javascript">
  60. //UEDITOR_HOME_URL、config、all这三个顺序不能改变(绝对路径)
  61. //window.UEDITOR_HOME_URL = "/ThinkPHP/Public/Ueditor/";
  62. //实例化编辑器
  63. var ue = UE.getEditor('editor');
  64. function insertHtml() {
  65. var value = prompt('插入html代码', '');
  66. ue.execCommand('insertHtml', value)
  67. }
  68. function createEditor() {
  69. enableBtn();
  70. UE.getEditor('editor');
  71. }
  72. function getAllHtml() {
  73. alert(UE.getEditor('editor').getAllHtml())
  74. }
  75. function getContent() {
  76. var arr = [];
  77. arr.push("使用editor.getContent()方法可以获得编辑器的内容");
  78. arr.push("内容为:");
  79. arr.push(UE.getEditor('editor').getContent());
  80. alert(arr.join("\n"));
  81. }
  82. function getPlainTxt() {
  83. var arr = [];
  84. arr.push("使用editor.getPlainTxt()方法可以获得编辑器的带格式的纯文本内容");
  85. arr.push("内容为:");
  86. arr.push(UE.getEditor('editor').getPlainTxt());
  87. alert(arr.join('\n'))
  88. }
  89. function setContent(isAppendTo) {
  90. var arr = [];
  91. arr.push("使用editor.setContent('欢迎使用ueditor')方法可以设置编辑器的内容");
  92. UE.getEditor('editor').setContent('欢迎使用ueditor', isAppendTo);
  93. alert(arr.join("\n"));
  94. }
  95. function setDisabled() {
  96. UE.getEditor('editor').setDisabled('fullscreen');
  97. disableBtn("enable");
  98. }
  99. function setEnabled() {
  100. UE.getEditor('editor').setEnabled();
  101. enableBtn();
  102. }
  103. function getText() {
  104. //当你点击按钮时编辑区域已经失去了焦点,如果直接用getText将不会得到内容,所以要在选回来,然后取得内容
  105. var range = UE.getEditor('editor').selection.getRange();
  106. range.select();
  107. var txt = UE.getEditor('editor').selection.getText();
  108. alert(txt)
  109. }
  110. function getContentTxt() {
  111. var arr = [];
  112. arr.push("使用editor.getContentTxt()方法可以获得编辑器的纯文本内容");
  113. arr.push("编辑器的纯文本内容为:");
  114. arr.push(UE.getEditor('editor').getContentTxt());
  115. alert(arr.join("\n"));
  116. }
  117. function hasContent() {
  118. var arr = [];
  119. arr.push("使用editor.hasContents()方法判断编辑器里是否有内容");
  120. arr.push("判断结果为:");
  121. arr.push(UE.getEditor('editor').hasContents());
  122. alert(arr.join("\n"));
  123. }
  124. function setFocus() {
  125. UE.getEditor('editor').focus();
  126. }
  127. function deleteEditor() {
  128. disableBtn();
  129. UE.getEditor('editor').destroy();
  130. }
  131. //提交方法
  132. function submitEditor() {
  133. //此处以非空为例
  134. if(ue.hasContents()){
  135. ue.sync(); //同步内容
  136. document.MyForm.submit();
  137. }
  138. }
  139. function disableBtn(str) {
  140. var div = document.getElementById('btns');
  141. var btns = domUtils.getElementsByTagName(div, "button");
  142. for (var i = 0, btn; btn = btns[i++];) {
  143. if (btn.id == str) {
  144. domUtils.removeAttributes(btn, ["disabled"]);
  145. } else {
  146. btn.setAttribute("disabled", "true");
  147. }
  148. }
  149. }
  150. function enableBtn() {
  151. var div = document.getElementById('btns');
  152. var btns = domUtils.getElementsByTagName(div, "button");
  153. for (var i = 0, btn; btn = btns[i++];) {
  154. domUtils.removeAttributes(btn, ["disabled"]);
  155. }
  156. }
  157. </script>