diff --git a/zh-cn/application-dev/reference/apis/js-apis-window.md b/zh-cn/application-dev/reference/apis/js-apis-window.md
index 2ebdfbce75c359c12cccd18543f8447a1634391b..047d75eb83c7769c53c78b1130c64b43710efbbe 100644
--- a/zh-cn/application-dev/reference/apis/js-apis-window.md
+++ b/zh-cn/application-dev/reference/apis/js-apis-window.md
@@ -235,18 +235,20 @@ create(id: string, type: WindowType): Promise<Window>
create(ctx: Context, id: string, type: WindowType, callback: AsyncCallback<Window>): void
-当Context为[ServiceExtAbilityContext](js-apis-serviceExtAbilityContext.md)时,创建系统窗口,使用callback方式作为异步方法。
+创建子窗口,使用callback方式作为异步方法,其中Context详见[Context](js-apis-Context.md)。
+
+从API version 9开始,当Context为[ServiceExtAbilityContext](js-apis-serviceExtAbilityContext.md)时,创建系统窗口,使用callback方式作为异步方法。
**系统能力**:SystemCapability.WindowManager.WindowManager.Core
- 参数
- | 参数名 | 类型 | 必填 | 说明 |
- | -------- | ---------------------------------------------- | ---- | ---------------------- |
- | ctx | [Context](js-apis-serviceExtAbilityContext.md) | 是 | 当前应用上下文信息。 |
- | id | string | 是 | 窗口id。 |
- | type | [WindowType](#windowtype) | 是 | 窗口类型。 |
- | callback | AsyncCallback<[Window](#window)> | 是 | 回调返回当前窗口对象。 |
+ | 参数名 | 类型 | 必填 | 说明 |
+ | -------- | -------------------------------------- | ---- | ------------------------------------------------------------ |
+ | ctx | Context | 是 | 当前应用上下文信息。
API version 8的Context定义见[Context](js-apis-Context.md)。
API version 9的Context定义见[Context](js-apis-serviceExtAbilityContext.md)。 |
+ | id | string | 是 | 窗口id。 |
+ | type | [WindowType](#windowtype) | 是 | 窗口类型。 |
+ | callback | AsyncCallback<[Window](#window)> | 是 | 回调返回当前窗口对象。 |
- 示例
@@ -267,17 +269,19 @@ create(ctx: Context, id: string, type: WindowType, callback: AsyncCallback<Wi
create(ctx: Context, id: string, type: WindowType): Promise<Window>
-当Context为[ServiceExtAbilityContext](js-apis-serviceExtAbilityContext.md)时,创建系统窗口,使用Promise方式作为异步方法。
+创建子窗口,使用Promise方式作为异步方法,其中Context详见[Context](js-apis-Context.md)。
+
+从API version 9开始,当Context为[ServiceExtAbilityContext](js-apis-serviceExtAbilityContext.md)时,创建系统窗口,使用Promise方式作为异步方法。
**系统能力**:SystemCapability.WindowManager.WindowManager.Core
- 参数
- | 参数名 | 类型 | 必填 | 说明 |
- | ------ | ---------------------------------------------- | ---- | -------------------- |
- | ctx | [Context](js-apis-serviceExtAbilityContext.md) | 是 | 当前应用上下文信息。 |
- | id | string | 是 | 窗口id。 |
- | type | [WindowType](#windowtype) | 是 | 窗口类型。 |
+ | 参数名 | 类型 | 必填 | 说明 |
+ | ------ | ------------------------- | ---- | ------------------------------------------------------------ |
+ | ctx | Context | 是 | 当前应用上下文信息。
API version 8的Context定义见[Context](js-apis-Context.md)。
API version 9的Context定义见[Context](js-apis-serviceExtAbilityContext.md)。 |
+ | id | string | 是 | 窗口id。 |
+ | type | [WindowType](#windowtype) | 是 | 窗口类型。 |
- 返回值
@@ -427,7 +431,7 @@ getTopWindow(ctx: Context, callback: AsyncCallback<Window>): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------------------------------------- | ---- | ------------------------------------------------------------ |
- | ctx | Context | 是 | 当前应用上下文信息。API 8的Context定义见[Context](js-apis-Context.md)。API 9的Context定义见[Context](js-apis-ability-context.md)。 |
+ | ctx | Context | 是 | 当前应用上下文信息。
API version 8的Context定义见[Context](js-apis-Context.md)。
API version 9的Context定义见[Context](js-apis-ability-context.md)。 |
| callback | AsyncCallback<[Window](#window)> | 是 | 回调返回当前应用内最后显示的窗口对象。 |
- 示例
@@ -456,7 +460,7 @@ getTopWindow(ctx: Context): Promise<Window>
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------- | ---- | ------------------------------------------------------------ |
- | ctx | Context | 是 | 当前应用上下文信息。API8的Context定义见[Context](js-apis-Context.md)。API 9的Context定义见[Context](js-apis-ability-context.md)。 |
+ | ctx | Context | 是 | 当前应用上下文信息。
API version 8的Context定义见[Context](js-apis-Context.md)。
API version 9的Context定义见[Context](js-apis-ability-context.md)。 |
- 返回值
diff --git a/zh-cn/application-dev/webgl/Readme-CN.md b/zh-cn/application-dev/webgl/Readme-CN.md
index 89d715d5a45a30e3a78c76937f835d89d2527549..0a2a1aa80df27bf99eb8077133c396774819fca2 100644
--- a/zh-cn/application-dev/webgl/Readme-CN.md
+++ b/zh-cn/application-dev/webgl/Readme-CN.md
@@ -1,4 +1,4 @@
# WebGL
-- [概述](webgl-overview.md)
+- [WebGL开发概述](webgl-overview.md)
- [WebGL开发指导](webgl-guidelines.md)