diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputmethod.md b/zh-cn/application-dev/reference/apis/js-apis-inputmethod.md
index 7bcfd175cd641105eb02f74e6cc423f3775c2623..612fd4cafcf0914d67a63894f02083b732070163 100644
--- a/zh-cn/application-dev/reference/apis/js-apis-inputmethod.md
+++ b/zh-cn/application-dev/reference/apis/js-apis-inputmethod.md
@@ -1696,9 +1696,9 @@ on(type: 'deleteLeft' | 'deleteRight', callback: (length: number) => void): void
**参数:**
-| 参数名 | 类型 | 必填 | 说明 |
-| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
-| type | string | 是 | 设置监听类型。
-type为‘deleteLeft’时表示订阅输入法应用向左删除事件监听。
-type为‘deleteRight’时表示订阅输入法应用向右删除事件监听。|
+| 参数名 | 类型 | 必填 | 说明 |
+| -------- | ----- | ---- | ----- |
+| type | string | 是 | 设置监听类型。
-type为‘deleteLeft’时表示订阅输入法应用向左删除事件监听。
-type为‘deleteRight’时表示订阅输入法应用向右删除事件监听。|
| callback | (length: number) => void | 是 | 回调函数,返回需要向左或向右删除的文本的长度。
开发者需要在回调函数中根据传入的删除长度操作编辑框中相应文本。 |
**错误码:**
@@ -1779,9 +1779,9 @@ on(type: 'sendKeyboardStatus', callback: (keyBoardStatus: KeyboardStatus) => voi
**参数:**
-| 参数名 | 类型 | 必填 | 说明 |
-| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
-| type | string | 是 | 设置监听类型。
-type为‘sendKeyboardStatus’时表示订阅输入法应用发送键盘状态事件监听。 |
+| 参数名 | 类型 | 必填 | 说明 |
+| -------- | ------ | ---- | ---- |
+| type | string | 是 | 设置监听类型。
-type为‘sendKeyboardStatus’时表示订阅输入法应用发送键盘状态事件监听。 |
| callback | (keyBoardStatus: [KeyboardStatus](#keyboardstatus10)) => void | 是 | 回调函数,返回键盘状态。
开发者需要在回调函数中根据传入的键盘状态做相应动作。 |
**错误码:**
@@ -1847,9 +1847,9 @@ on(type: 'sendFunctionKey', callback: (functionKey: FunctionKey) => void): void
**参数:**
-| 参数名 | 类型 | 必填 | 说明 |
-| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
-| type | string | 是 | 设置监听类型。
-type为‘sendFunctionKey’时表示订阅输入法应用发送功能键事件监听。 |
+| 参数名 | 类型 | 必填 | 说明 |
+| -------- | -------- | ---- | ----- |
+| type | string | 是 | 设置监听类型。
-type为‘sendFunctionKey’时表示订阅输入法应用发送功能键事件监听。 |
| callback | (functionKey: [FunctionKey](#functionkey10)) => void | 是 | 回调函数,返回输入法应用发送的功能键信息。
开发者需要根据返回的功能键做相应的操作。 |
**错误码:**
@@ -1915,9 +1915,9 @@ on(type: 'moveCursor', callback: (direction: Direction) => void): void
**参数:**
-| 参数名 | 类型 | 必填 | 说明 |
-| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
-| type | string | 是 | 设置监听类型。
-type为‘moveCursor’时表示订阅输入法应用移动光标事件监听。 |
+| 参数名 | 类型 | 必填 | 说明 |
+| -------- | ------ | ---- | ------ |
+| type | string | 是 | 设置监听类型。
-type为‘moveCursor’时表示订阅输入法应用移动光标事件监听。 |
| callback | callback: (direction: [Direction10+](#direction10)) => void | 是 | 回调函数,返回光标信息。
开发者需要根据返回的光标移动方向改变光标位置。 |
**错误码:**
@@ -2018,8 +2018,8 @@ off(type: 'handleExtendAction'): void
**参数:**
-| 参数名 | 类型 | 必填 | 说明 |
-| ------ | ------ | ---- | ------------------------------------------------------------ |
+| 参数名 | 类型 | 必填 | 说明 |
+| ------ | ------ | ---- | ------- |
| type | string | 是 | 设置监听类型。
-type为‘handleExtendAction’时表示取消订阅输入法应用发送扩展代码事件监听。 |
**错误码:**