首页 > 代码库 > 给ueditor编辑器赋值

给ueditor编辑器赋值

<script id="editor" name="content" type="text/plain" style="width:100%;height:400px;"></script>

html代码如上

var editor = UE.getEditor("editor");
    editor.ready(function(){
        editor.setContent("123");
    })

js代码如上

给ueditor编辑器赋值