🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 设置内容 #### html初始化内容 直接将内容写到要创建编辑器的```<div>```标签中 ``` <div id="editor"> <p>欢迎使用 <b>ushareEditor</b> 富文本编辑器</p> </div> ``` #### js设置内容 ``` editor.create() editor.txt.html('<p>用 JS 设置内容</p>') ``` #### 追加内容 ``` editor.txt.append('<p>追加的内容</p>') ``` #### 清空内容 ``` editor.txt.clear() ```