本文主要是介绍百度ueditor富文本编辑器数据回显为代码问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用ueditor时,从数据库获取到html数据后,直接在ueditor里显示为代码,可通过以下方式修复:
<textarea id="editor" name="content" style="width:800px;height:400px;" ></textarea >
<input type="hidden" name="" value="{$linfo.content|stripslashes|htmlspecialchars_decode}" id="editorValue">
javascript代码为:
<script type="text/javascript">
//实例化编辑器
//建议使用工厂方法getEditor创建和引用编辑器实例,如果在某个闭包下引用该编辑器,直接调用UE.getEditor('editor')就能拿到相关的实例
var ue = UE.getEditor('editor');
var htmlStr = $("#editorValue").val();
ue.ready(function() {
ue.setContent(htmlStr, false);
});
</script>
这篇关于百度ueditor富文本编辑器数据回显为代码问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!