亚洲色蝴蝶中文娱乐网,在线亚洲欧美一区二区中文字幕,无人视频在线观看视频高清视频,99午夜国产精品一区二区,人人妻人人爽人人狠狠

一個頁面怎么顯示多個ueditor編輯器

時間:2019-12-03 22:12:08 類型:JS/JQUERY
字號:    

有時我們會用到一個頁面呈現(xiàn)多個ueditor編輯器,實現(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>
    <!-- 實例化編輯器 -->
    <script type="text/javascript">
        var ue01 = UE.getEditor('container01');
        var ue02 = UE.getEditor('container02');
    </script>

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

QQ截圖20191203221123.jpg

<