## 設置內容
#### 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()
```