2.7 UEditor富文本引用

UEditor富文本调用,只需要两步即可:

一、在使用页放置默认id为container的控件:

  1. <script id="container" name="notice.content"  type="text/plain" style="width:100%;height:500px;">#(notice.content??)</script>


二、在使用页面调用ueditor函数:

  1. #@ueditor()

 

如果是在:_form.html页面使用,#@ueditor()需要写在#define js()代码块里面,这是一个加载顺序的问题,如下:

  1. #define js()
  2.     #@ueditor()
  3. #end

效果图:

image.png

image.png

3、如果要一个页面引入多个富文本实例,那么只需要在引用前指定元素id即可:#setLocal(ueditorId=元素id)

  1. #@layout()
  2. #define main()
  3.     <form action="javascript:void(0)" class="layui-form layui-form-pane f-form" method="post" lay-filter='saveForm'>
  4.         <div class="layui-row layui-col-space1 task-row">
  5.             #@colStart("默认控件",12)
  6.             <script id="container" name="notice.content"  type="text/plain" style="width:100%;height:500px;">#(notice.content??)</script>
  7.             #@colEnd()
  8.         </div>
  9.         <div class="layui-row layui-col-space1 task-row">
  10.             #@colStart("富文本控件2",12)
  11.             <script id="container2" name="notice.content2"  type="text/plain" style="width:100%;height:500px;">#(notice.content2??)</script>
  12.             #@colEnd()
  13.         </div>
  14.         
  15.         <div class="layui-row layui-col-space1 task-row">
  16.             #@colStart("富文本控件3",12)
  17.             <script id="container3" name="notice.content3"  type="text/plain" style="width:100%;height:500px;">#(notice.content3??)</script>
  18.             #@colEnd()
  19.         </div>
  20.     </form>
  21. #end
  22.  
  23. #define js()
  24.     #@ueditor()
  25.     
  26.     #setLocal(ueditorId="container2")
  27.     #@ueditor()
  28.     
  29.     #setLocal(ueditorId="container3")
  30.     #@ueditor()
  31. #end


顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友
扫描二维码加琴海森林为好友