日韩精品欧美激情国产一区_中文无码精品一区二区三区在线_岛国毛片AV在线无码不卡_亞洲歐美日韓精品在線_使劲操好爽好粗视频在线播放_日韩一区欧美二区_八戒八戒网影院在线观看神马_亚洲怡红院在线色网_av无码不卡亚洲电影_国产麻豆媒体MDX

一個(gè)頁(yè)面怎么顯示多個(gè)ueditor編輯器

時(shí)間:2019-12-03 22:12:08 類型:JS/JQUERY
字號(hào):    

有時(shí)我們會(huì)用到一個(gè)頁(yè)面呈現(xiàn)多個(gè)ueditor編輯器,實(shí)現(xiàn)方法如下:

<!-- 加載編輯器的容器 -->
    <script id="container01" name="content" type="text/plain" style="width: 600px;height: 100px;"></script>
    <!-- 加載編輯器的容器 -->
    <script id="container02" name="content" type="text/plain" style="width: 600px;height: 100px; margin-top: 30px;"></script>
    <!-- 配置文件 -->
    <script type="text/javascript" src="./ueditor/ueditor.config.js"></script>
    <!-- 編輯器源碼文件 -->
    <script type="text/javascript" src="./ueditor/ueditor.all.js"></script>
    <!-- 實(shí)例化編輯器 -->
    <script type="text/javascript">
        var ue01 = UE.getEditor('container01');
        var ue02 = UE.getEditor('container02');
    </script>

呈現(xiàn)效果如下:

QQ截圖20191203221123.jpg

<