1、引包
2、页面中引用
3、js加载
$(document).ready(function(){ editor = new UE.ui.Editor(); editor.render("editor"); editor.ready(function(){ updateParentIframeHeight(); }) });
4、获得富文本中内容
var text = UE.getEditor('editor').getContentTxt();
本文共 354 字,大约阅读时间需要 1 分钟。
1、引包
2、页面中引用
3、js加载
$(document).ready(function(){ editor = new UE.ui.Editor(); editor.render("editor"); editor.ready(function(){ updateParentIframeHeight(); }) });
4、获得富文本中内容
var text = UE.getEditor('editor').getContentTxt();
转载于:https://www.cnblogs.com/volare/p/4285677.html