1 下载ueditor1.4.3
地址:http://ueditor.baidu.com/website/download.html;
2 把 ueditor1.4.3 放到public文件夹下,更名为 ueditor
3 把ueditor1.4.3 到public文件夹下在需要引用的文件中加入
1
2
3
4
5
6
7
8
| <!-- 配置文件 -->
<script type="text/javascript" src="http://localhost/neau/Public/ueditor/ueditor.config.js"></script>
<!-- 编辑器源码文件 -->
<script type="text/javascript" src="http://localhost/neau/Public/ueditor/ueditor.all.js"></script>
<!-- 实例化编辑器 -->
<script type="text/javascript">
var ue = UE.getEditor('container');
</script>
|
注意:这里要将src="http://localhost/neau/Public/ueditor/ueditor.all.js"
写为绝对路径而非相对路径
4 在需要显示编辑器的地方加下面的代码
1
2
| <!-- 编辑器容器 -->
<td colspan="3" class="tablebj03" > <script id="container" name="content" type="text/plain" style="width:960px;height:500px;"></script> </td>
|
这样就能在Thinkphp3.1上使用ueditor1.4.3了