[TOC]
## blur
<!--
Removes focus from the editor.
-->
让编辑器失去焦点。
**方法**
```javascript
blur()
```
**示例**
```javascript
quill.blur();
```
## disable
<!--
Shorthand for [`enable(false)`](#enable).
-->
[`enable(false)`](#enable)的快捷方法。
## enable
<!--
Set ability for user to edit, via input devices like the mouse or keyboard. Does not affect capabilities of API calls, when the `source` is `"api"` or `"silent".
-->
让通过鼠标或键盘等输入设备设置让用户能够编辑内容。当`source`为`"api"`或`"silent"时,不影响API的调用。
社
**方法**
```javascript
enable(enabled: boolean = true)
```
**示例**
```javascript
quill.enable();
quill.enable(false); // Disables user input
```
## focus
<!--
Focuses the editor and restores its last range.
-->
焦点编辑器并恢复最后一次的选择。
**方法**
```javascript
focus()
```
**示例**
```javascript
quill.focus();
```
## hasFocus
<!--
Checks if editor has focus. Note focus on toolbar, tooltips, does not count as the editor.
-->
检查焦点是否在编辑器上,注意,若焦点在工具栏或提示框上,不算作在编辑器上。
**方法**
```javascript
hasFocus(): Boolean
```
**示例**
```javascript
quill.hasFocus();
```
## update
<!--
Synchronously check editor for user updates and fires events, if changes have occurred. Useful for collaborative use cases during conflict resolution requiring the latest up to date state. [Source](/docs/api/#events) may be `"user"`, `"api"`, or `"silent"`.
-->
如果编辑器内容发生改变,同步检查用户更新和触发事件。在冲突解决方案中要求最新状态的协同案例中有作用。[Source](事件events.md) 可选`"user"`, `"api"`, 或`"silent"`
**方法**
```javascript
update(source: String = 'user')
```
**示例**
```javascript
quill.update();
```
- 前言
- 快速开始(quick_start)
- 下载(download)
- 配置(configuration)
- 格式(formats)
- API
- 内容(contents)
- 格式化(formatting)
- 选区(selection)
- 编辑器(editor)
- 事件(events)
- 模型(model)
- 扩展(extension)
- 增量(Delta)
- 模块(modules)
- 工具栏(toolbar)
- 键盘(keyboard)
- 历史记录(history)
- 粘贴板(clipboard)
- 语法高亮(syntax)
- 主题(themes)
- 更多教程
- 为什么选择Quill?
- 如何定制Quill?
- 设计Delta格式(未翻译)
- 构建一个自定义模块
- 将Quill加入你的编译管线(未翻译)
- Cloning Medium with Parchment
- 和其它富文本编辑器的对比(未翻译)
- Designing the Delta Format
- 扩展模块
- vue-quill-editor
- quill-image-extend-module
- quill-image-resize-module
- quill-image-drop-module
- quill-better-table
- quilljs-table
- 更多模块