diff --git a/components/auto-complete/index.zh-CN.md b/components/auto-complete/index.zh-CN.md
index 161ed60a2c..3a4389c0fd 100644
--- a/components/auto-complete/index.zh-CN.md
+++ b/components/auto-complete/index.zh-CN.md
@@ -48,7 +48,7 @@ cover: https://gw.alipayobjects.com/zos/alicdn/qtJm4yt45/AutoComplete.svg
| onFocus | 获得焦点时的回调 | function() | - | |
| onSearch | 搜索补全项的时候调用 | function(value) | - | |
| onSelect | 被选中时调用,参数为选中项的 value 值 | function(value, option) | - | |
-| onClear | 清除内容时回调 | function | - | 4.6.0 |
+| onClear | 清除内容时的回调 | function | - | 4.6.0 |
## 方法
diff --git a/components/checkbox/index.zh-CN.md b/components/checkbox/index.zh-CN.md
index 991aac142a..ba2af5d89a 100644
--- a/components/checkbox/index.zh-CN.md
+++ b/components/checkbox/index.zh-CN.md
@@ -26,7 +26,7 @@ cover: https://gw.alipayobjects.com/zos/alicdn/8nbVbHEm_/CheckBox.svg
| defaultChecked | 初始是否选中 | boolean | false | |
| disabled | 失效状态 | boolean | false | |
| indeterminate | 设置 indeterminate 状态,只负责样式控制 | boolean | false | |
-| onChange | 变化时回调函数 | function(e:Event) | - | |
+| onChange | 变化时的回调函数 | function(e:Event) | - | |
#### Checkbox Group
@@ -37,7 +37,7 @@ cover: https://gw.alipayobjects.com/zos/alicdn/8nbVbHEm_/CheckBox.svg
| name | CheckboxGroup 下所有 `input[type="checkbox"]` 的 `name` 属性 | string | - | |
| options | 指定可选项 | string\[] \| number\[] \| Option\[] | \[] | |
| value | 指定选中的选项 | string\[] | \[] | |
-| onChange | 变化时回调函数 | function(checkedValue) | - | |
+| onChange | 变化时的回调函数 | function(checkedValue) | - | |
##### Option
diff --git a/components/select/index.zh-CN.md b/components/select/index.zh-CN.md
index 55e10eef6e..1a4c735c35 100644
--- a/components/select/index.zh-CN.md
+++ b/components/select/index.zh-CN.md
@@ -68,17 +68,17 @@ cover: https://gw.alipayobjects.com/zos/alicdn/_0XzgOis7/Select.svg
| tokenSeparators | 自动分词的分隔符,仅在 `mode="tags"` 时生效 | string\[] | - | |
| value | 指定当前选中的条目,多选时为一个数组。(value 数组引用未变化时,Select 不会更新) | string \| string\[]
number \| number\[]
LabeledValue \| LabeledValue\[] | - | |
| virtual | 设置 false 时关闭虚拟滚动 | boolean | true | 4.1.0 |
-| onBlur | 失去焦点时回调 | function | - | |
+| onBlur | 失去焦点时的回调 | function | - | |
| onChange | 选中 option,或 input 的 value 变化时,调用此函数 | function(value, option:Option \| Array<Option>) | - | |
-| onClear | 清除内容时回调 | function | - | 4.6.0 |
+| onClear | 清除内容时的回调 | function | - | 4.6.0 |
| onDeselect | 取消选中时调用,参数为选中项的 value (或 key) 值,仅在 `multiple` 或 `tags` 模式下生效 | function(string \| number \| LabeledValue) | - | |
| onDropdownVisibleChange | 展开下拉菜单的回调 | function(open) | - | |
-| onFocus | 获得焦点时回调 | function | - | |
-| onInputKeyDown | 按键按下时回调 | function | - | |
-| onMouseEnter | 鼠标移入时回调 | function | - | |
-| onMouseLeave | 鼠标移出时回调 | function | - | |
+| onFocus | 获得焦点时的回调 | function | - | |
+| onInputKeyDown | 按键按下时的回调 | function | - | |
+| onMouseEnter | 鼠标移入时的回调 | function | - | |
+| onMouseLeave | 鼠标移出时的回调 | function | - | |
| onPopupScroll | 下拉列表滚动时的回调 | function | - | |
-| onSearch | 文本框值变化时回调 | function(value: string) | - | |
+| onSearch | 文本框值变化时的回调 | function(value: string) | - | |
| onSelect | 被选中时调用,参数为选中项的 value (或 key) 值 | function(string \| number \| LabeledValue, option: Option) | - | |
> 注意,如果发现下拉菜单跟随页面滚动,或者需要在其他弹层中触发 Select,请尝试使用 `getPopupContainer={triggerNode => triggerNode.parentElement}` 将下拉弹层渲染节点固定在触发器的父元素中。
diff --git a/components/switch/index.zh-CN.md b/components/switch/index.zh-CN.md
index 00ee4b4301..2f7c0e2a86 100644
--- a/components/switch/index.zh-CN.md
+++ b/components/switch/index.zh-CN.md
@@ -26,12 +26,12 @@ cover: https://gw.alipayobjects.com/zos/alicdn/zNdJQMhfm/Switch.svg
| loading | 加载中的开关 | boolean | false |
| size | 开关大小,可选值:`default` `small` | string | `default` |
| unCheckedChildren | 非选中时的内容 | ReactNode | - |
-| onChange | 变化时回调函数 | function(checked: boolean, event: Event) | - |
-| onClick | 点击时回调函数 | function(checked: boolean, event: Event) | - |
+| onChange | 变化时的回调函数 | function(checked: boolean, event: Event) | - |
+| onClick | 点击时的回调函数 | function(checked: boolean, event: Event) | - |
## 方法
-| 名称 | 描述 |
-| --- | --- |
-| blur() | 移除焦点 |
+| 名称 | 描述 |
+| ------- | -------- |
+| blur() | 移除焦点 |
| focus() | 获取焦点 |
diff --git a/components/tree-select/index.zh-CN.md b/components/tree-select/index.zh-CN.md
index 2887fcb34a..7dbf129205 100644
--- a/components/tree-select/index.zh-CN.md
+++ b/components/tree-select/index.zh-CN.md
@@ -65,7 +65,7 @@ cover: https://gw.alipayobjects.com/zos/alicdn/Ax4DA0njr/TreeSelect.svg
| virtual | 设置 false 时关闭虚拟滚动 | boolean | true | 4.1.0 |
| onChange | 选中树节点时调用此函数 | function(value, label, extra) | - | |
| onDropdownVisibleChange | 展开下拉菜单的回调 | function(open) | - | |
-| onSearch | 文本框值变化时回调 | function(value: string) | - | |
+| onSearch | 文本框值变化时的回调 | function(value: string) | - | |
| onSelect | 被选中时调用 | function(value, node, extra) | - | |
| onTreeExpand | 展示节点时调用 | function(expandedKeys) | - | |