## 设置内容
#### 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()
```