From d3ca74dcb599cd6425b7345317ca1a9e2160b33a Mon Sep 17 00:00:00 2001 From: T34-active Date: Wed, 27 Nov 2024 11:08:28 +0800 Subject: [PATCH 1/3] [zh-cn]: update the translation of Location `hash` property --- files/zh-cn/web/api/location/hash/index.md | 27 +++++++++++----------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/files/zh-cn/web/api/location/hash/index.md b/files/zh-cn/web/api/location/hash/index.md index 8b29fd4fbec8f3..b07f3fc0d917f3 100644 --- a/files/zh-cn/web/api/location/hash/index.md +++ b/files/zh-cn/web/api/location/hash/index.md @@ -1,35 +1,34 @@ --- -title: "Location: hash" +title: Location:hash 属性 slug: Web/API/Location/hash +l10n: + sourceCommit: a2847ff3788f224ffb4cdf05cb0139e07fde7533 --- {{ APIRef("Location") }} -{{domxref("Location")}} 接口的 **`hash`** 属性返回一个 {{domxref("USVString")}},其中会包含 URL 标识中的 `'#'` 和 后面 URL 片段标识符。 +{{domxref("Location")}} 接口的 **`hash`** 属性返回一个字符串,其中包含一个 `'#'`,后跟 URL 的片段标识符——URL 试图指向的页面上的 ID。 -这里 fragment 不会经过[百分比编码](/zh-CN/docs/Glossary/percent-encoding)(URL 编码)。如果 URL 中没有 fragment,该属性会包含一个空字符串,`""` +该片段不是{{Glossary("Percent-encoding", "百分号编码")}}。如果 URL 没有片段标识符,则此属性的值为空字符串 `""`。 -## Syntax +## 值 -```plain -string = object.hash; -object.hash = string; -``` +字符串。 -## Examples +## 示例 ```html -Examples +示例 ``` -## Specifications +## 规范 {{Specifications}} -## Browser compatibility +## 浏览器兼容性 {{Compat}} From ff7329b19301e7211ec2446f58a0a800ad538a73 Mon Sep 17 00:00:00 2001 From: Jason Lam Date: Wed, 27 Nov 2024 22:50:08 +0800 Subject: [PATCH 2/3] Update files/zh-cn/web/api/location/hash/index.md --- files/zh-cn/web/api/location/hash/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/zh-cn/web/api/location/hash/index.md b/files/zh-cn/web/api/location/hash/index.md index b07f3fc0d917f3..ef8fb7d5eb38ae 100644 --- a/files/zh-cn/web/api/location/hash/index.md +++ b/files/zh-cn/web/api/location/hash/index.md @@ -9,7 +9,7 @@ l10n: {{domxref("Location")}} 接口的 **`hash`** 属性返回一个字符串,其中包含一个 `'#'`,后跟 URL 的片段标识符——URL 试图指向的页面上的 ID。 -该片段不是{{Glossary("Percent-encoding", "百分号编码")}}。如果 URL 没有片段标识符,则此属性的值为空字符串 `""`。 +该片段标识符没有进行{{Glossary("Percent-encoding", "百分号编码")}}。如果 URL 没有片段标识符,则此属性的值为空字符串 `""`。 ## 值 From e8dade9ea47e7c8171a4ca5100d5d94964f734ba Mon Sep 17 00:00:00 2001 From: 720 <71604450+T34-active@users.noreply.github.com> Date: Fri, 29 Nov 2024 09:04:45 +0800 Subject: [PATCH 3/3] Apply suggestions from code review --- files/zh-cn/web/api/location/hash/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/zh-cn/web/api/location/hash/index.md b/files/zh-cn/web/api/location/hash/index.md index ef8fb7d5eb38ae..f3d061d47fe5c3 100644 --- a/files/zh-cn/web/api/location/hash/index.md +++ b/files/zh-cn/web/api/location/hash/index.md @@ -21,7 +21,7 @@ l10n: 示例 ```