当前位置:首页 > CMS教程 > Thinkphp > 列表

thinkphp 如何使用ueditor编辑器

发布:smiling 来源: PHP粉丝网  添加日期:2014-11-20 16:51:08 浏览: 评论:0 

这个标题其实可以改为如何使用ueditor编辑器,和TP关系不大.

1、ueditor存放在tp根下的Data目录下,即\www\blog\Data\Ueditor

2、以下在使用ueditor的模板中操作;

头部添加一段JS:

  1. <script type="text/javascript"
  2.       window.UEDITOR_HOME_URL ="__ROOT__/Data/Ueditor/";//指出ueditor的存放路径 
  3.       window.onload=function(){ 
  4.           UE.getEditor('content');//要传入一个ID才能显示编辑器,即textarea中的id //开源软件:phpfensi.com 
  5.       } 
  6. < /script> 

引入两个JS文件:

<js file="__ROOT__/Data/Ueditor/ueditor.config.js" />

<js file="__ROOT__/Data/Ueditor/ueditor.all.js" />

ueditor版本为 ueditor1_4_3,我看网上及下载的实例要引入的js文件为ueditor.all.min.js而非ueditor.all.js,不知道我为什么使用ueditor.all.min.js调取不出来编辑器,ueditor.all.js却可以显示,有知道的还请告知.

Tags: thinkphp编辑器 ueditor编辑器

分享到:

相关文章