Dragon-v

PHP TP5 实现引入富文本

1.下载富文本文件

  推荐网址:https://github.com/fex-team/ueditor

  

  按照顺序就可以下载了。(或者自行下载)

2.下载好后解压文件,把解压后的文件放入TP5框架中public目录下。

3.引入富文本

  (1)在head标签中引入,src路径记得修改

       <script type="text/javascript" charset="utf-8" src="/static/utf8-php/ueditor.config.js"></script>

    <script type="text/javascript" charset="utf-8" src="/static/utf8-php/ueditor.all.min.js"> </script>

    <script type="text/javascript" charset="utf-8" src="/static/utf8-php/lang/zh-cn/zh-cn.js"></script>

  (2)在body标签中引入

    <textarea name="" id="editor" placeholder="" class=""></textarea>

    或者 

    <script id="editor" type="text/plain" style="width:500px;height:200px;float:left;"></script>

  (3)在html标签外引入

    <script type="text/javascript">

      var ue = UE.getEditor('editor');

    </script>

  (4)切记这两个id一定要一样

    

  (5)刷新页面就可以啦!

 

posted on 2021-08-18 15:00  Dragon-v  阅读(258)  评论(0编辑  收藏  举报