ueditor 加载文本

Posted jiangfeilong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ueditor 加载文本相关的知识,希望对你有一定的参考价值。

一. 定义一个隐藏区域,然后用js获取

// 定义 文本框
                        <script id="editor" type="text/plain" style="width:1024px;height:500px;"></script>
     取得 服务器数据,并隐藏
<div id = "hide" style="display:none;">${blog.content} </div>

    <script type="text/javascript">
    
        //实例化编辑器
        //建议使用工厂方法getEditor创建和引用编辑器实例,如果在某个闭包下引用该编辑器,直接调用UE.getEditor(‘editor‘)就能拿到相关的实例
        var ue = UE.getEditor(editor);
        
        ue.ready(function() {
          // 得到隐藏区域数据
             var con = document.getElementById("hide").innerhtml;
          // 插入数据     
             ue.setContent(con);
        });
    </script>

 

以上是关于ueditor 加载文本的主要内容,如果未能解决你的问题,请参考以下文章

ueditor 加载文本

PHP UEditor富文本编辑器 上传显示 后端配置项没有正常加载,上传插件不能正常使用!

Textarea - 百度富文本编辑器插件UEditor

PHP Ueditor 富文本编辑器

Ueditor之前后端源码的学习和简单的研究

ueditor插入html代码保存后,再次编辑文章时html代码被过滤只显示文本内容!