百度ueditor富文本编辑器加载数据库内容的方法

定义一个中转站


<code id="testcon" style="display:none;">code>

<textarea  id="editor" required="required" style="width:850px;height:400px;">textarea>

使用ajax从数据库获取内容

<script type="text/javascript">
    $.getJSON("../../../Code_Find_Servlet",json,function(data){
                if(data!=null){
                    //从数据库获取内容
                    $("#testcon").html(data.content);
                    window.setTimeout(setContent,1000);//一秒后再调用赋值方法
               };
        });
});

//给ueditor插入值
 function setContent(){
    UE.getEditor('editor').execCommand('insertHtml', $('#testcon').html());
 } 

script>

你可能感兴趣的:(JSP)