diff --git a/zh-cn/application-dev/reference/apis/js-apis-uri.md b/zh-cn/application-dev/reference/apis/js-apis-uri.md
index 913a4fbde89d14be8d8c691aaf57c4d3688c5222..8fab6dd63525eebed9892399cac181886cc20f85 100644
--- a/zh-cn/application-dev/reference/apis/js-apis-uri.md
+++ b/zh-cn/application-dev/reference/apis/js-apis-uri.md
@@ -47,11 +47,11 @@ constructor是URI的构造函数。
**示例:**
```js
-let mm = 'http://username:password@host:8080/directory/file?foo=1&bar=2#fragment';
-new uri.URI(mm); // Output 'http://username:password@host:8080/directory/file?foo=1&bar=2#fragment';
+let mm = 'https://username:password@host:8080/directory/file?foo=1&bar=2#fragment';
+new uri.URI(mm); // Output 'https://username:password@host:8080/directory/file?foo=1&bar=2#fragment';
```
```js
-new uri.URI('http://username:password@host:8080'); // Output 'http://username:password@host:8080';
+new uri.URI('https://username:password@host:8080'); // Output 'https://username:password@host:8080';
```
@@ -72,7 +72,7 @@ toString(): string
**示例:**
```js
-const result = new uri.URI('http://username:password@host:8080/directory/file?query=pppppp#qwer=da');
+const result = new uri.URI('https://username:password@host:8080/directory/file?query=pppppp#qwer=da');
result.toString()
```
@@ -104,8 +104,8 @@ equals(other: URI): boolean
**示例:**
```js
-const uriInstance = new uri.URI('http://username:password@host:8080/directory/file?query=pppppp#qwer=da');
-const uriInstance1 = new uri.URI('http://username:password@host:8080/directory/file?query=pppppp#qwer=da#fragment');
+const uriInstance = new uri.URI('https://username:password@host:8080/directory/file?query=pppppp#qwer=da');
+const uriInstance1 = new uri.URI('https://username:password@host:8080/directory/file?query=pppppp#qwer=da#fragment');
uriInstance.equals(uriInstance1);
```
### equalsTo9+
@@ -131,8 +131,8 @@ equalsTo(other: URI): boolean
**示例:**
```js
-const uriInstance = new uri.URI('http://username:password@host:8080/directory/file?query=pppppp#qwer=da');
-const uriInstance1 = new uri.URI('http://username:password@host:8080/directory/file?query=pppppp#qwer=da#fragment');
+const uriInstance = new uri.URI('https://username:password@host:8080/directory/file?query=pppppp#qwer=da');
+const uriInstance1 = new uri.URI('https://username:password@host:8080/directory/file?query=pppppp#qwer=da#fragment');
uriInstance.equalsTo(uriInstance1);
```
@@ -153,7 +153,7 @@ checkIsAbsolute(): boolean
**示例:**
```js
-const uriInstance = new uri.URI('http://username:password@www.qwer.com:8080?query=pppppp');
+const uriInstance = new uri.URI('https://username:password@www.qwer.com:8080?query=pppppp');
uriInstance.checkIsAbsolute();
```
@@ -175,7 +175,7 @@ normalize(): URI
**示例:**
```js
-const uriInstance = new uri.URI('http://username:password@www.qwer.com:8080/path/path1/../path2/./path3?query=pppppp');
+const uriInstance = new uri.URI('https://username:password@www.qwer.com:8080/path/path1/../path2/./path3?query=pppppp');
let uriInstance1 = uriInstance.normalize();
uriInstance1.path;
```
diff --git a/zh-cn/application-dev/reference/apis/js-apis-url.md b/zh-cn/application-dev/reference/apis/js-apis-url.md
index 1631975c83e59f66b58b748b0d2327d3e9a7170d..eab6d3a5a7a737506dd4ace829ccb486c7d80b4d 100755
--- a/zh-cn/application-dev/reference/apis/js-apis-url.md
+++ b/zh-cn/application-dev/reference/apis/js-apis-url.md
@@ -809,13 +809,13 @@ URL的构造函数。
**示例:**
```js
-let mm = 'http://username:password@host:8080';
-let a = new Url.URL("/", mm); // Output 'http://username:password@host:8080/';
-let b = new Url.URL(mm); // Output 'http://username:password@host:8080/';
-new Url.URL('path/path1', b); // Output 'http://username:password@host:8080/path/path1';
-let c = new Url.URL('/path/path1', b); // Output 'http://username:password@host:8080/path/path1';
-new Url.URL('/path/path1', c); // Output 'http://username:password@host:8080/path/path1';
-new Url.URL('/path/path1', a); // Output 'http://username:password@host:8080/path/path1';
+let mm = 'https://username:password@host:8080';
+let a = new Url.URL("/", mm); // Output 'https://username:password@host:8080/';
+let b = new Url.URL(mm); // Output 'https://username:password@host:8080/';
+new Url.URL('path/path1', b); // Output 'https://username:password@host:8080/path/path1';
+let c = new Url.URL('/path/path1', b); // Output 'https://username:password@host:8080/path/path1';
+new Url.URL('/path/path1', c); // Output 'https://username:password@host:8080/path/path1';
+new Url.URL('/path/path1', a); // Output 'https://username:password@host:8080/path/path1';
new Url.URL('/path/path1', "https://www.exampleUrl/fr-FR/toto"); // Output https://www.exampleUrl/path/path1
new Url.URL('/path/path1', ''); // Raises a TypeError exception as '' is not a valid URL
new Url.URL('/path/path1'); // Raises a TypeError exception as '/path/path1' is not a valid URL
@@ -841,8 +841,8 @@ URL静态成员函数。
**示例:**
```js
-let mm = 'http://username:password@host:8080';
-Url.URL.parseURL(mm); // Output 'http://username:password@host:8080/';
+let mm = 'https://username:password@host:8080';
+Url.URL.parseURL(mm); // Output 'https://username:password@host:8080/';
```
### tostring
@@ -862,7 +862,7 @@ toString(): string
**示例:**
```js
-const url = new Url.URL('http://username:password@host:8080/directory/file?query=pppppp#qwer=da');
+const url = new Url.URL('https://username:password@host:8080/directory/file?query=pppppp#qwer=da');
url.toString();
```
@@ -883,7 +883,7 @@ toJSON(): string
**示例:**
```js
-const url = new Url.URL('http://username:password@host:8080/directory/file?query=pppppp#qwer=da');
+const url = new Url.URL('https://username:password@host:8080/directory/file?query=pppppp#qwer=da');
url.toJSON();
```
\ No newline at end of file
diff --git a/zh-cn/application-dev/reference/apis/js-apis-xml.md b/zh-cn/application-dev/reference/apis/js-apis-xml.md
index 271c69b5e15a7a9ffd8dedd17f01b18abe29583d..25cd633dcd88f37caa493d6cebbd432f055b87ec 100644
--- a/zh-cn/application-dev/reference/apis/js-apis-xml.md
+++ b/zh-cn/application-dev/reference/apis/js-apis-xml.md
@@ -144,11 +144,11 @@ endElement(): void
let arrayBuffer = new ArrayBuffer(1024);
let bufView = new DataView(arrayBuffer);
let thatSer = new xml.XmlSerializer(bufView);
-thatSer.setNamespace("h", "http://www.w3.org/TR/html4/");
+thatSer.setNamespace("h", "https://www.w3.org/TR/html4/");
thatSer.startElement("table");
thatSer.setAttributes("importance", "high");
thatSer.setText("Happy");
-thatSer.endElement(); // => Happy
+thatSer.endElement(); // => Happy
```
@@ -173,9 +173,9 @@ setNamespace(prefix: string, namespace: string): void
let arrayBuffer = new ArrayBuffer(1024);
let thatSer = new xml.XmlSerializer(arrayBuffer);
thatSer.setDeclaration();
-thatSer.setNamespace("h", "http://www.w3.org/TR/html4/");
+thatSer.setNamespace("h", "https://www.w3.org/TR/html4/");
thatSer.startElement("note");
-thatSer.endElement();// = >'\r\n';
+thatSer.endElement();// = >'\r\n';
```
### setComment