标签:set 实例化 服务 bsp editor 使用 height ack content
一. 定义一个隐藏区域,然后用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>
标签:set 实例化 服务 bsp editor 使用 height ack content
原文地址:https://www.cnblogs.com/jiangfeilong/p/10850645.html