From fe66608c80defece399f61d4497a6407ec87c4f0 Mon Sep 17 00:00:00 2001 From: Jason Ren <40999116+jasonren0403@users.noreply.github.com> Date: Sun, 5 Nov 2023 19:13:56 +0800 Subject: [PATCH] [zh-cn]: update HTMLAnchorElement username property (#16835) --- .../api/htmlanchorelement/username/index.md | 33 ++++++++++--------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/files/zh-cn/web/api/htmlanchorelement/username/index.md b/files/zh-cn/web/api/htmlanchorelement/username/index.md index 9ac149874b37e8..27f592fe44bb04 100644 --- a/files/zh-cn/web/api/htmlanchorelement/username/index.md +++ b/files/zh-cn/web/api/htmlanchorelement/username/index.md @@ -1,35 +1,36 @@ --- -title: HTMLHyperlinkElementUtils.username +title: HTMLAnchorElement:username 属性 slug: Web/API/HTMLAnchorElement/username +l10n: + sourceCommit: a3d9f61a8990ba7b53bda9748d1f26a9e9810b18 --- -{{ApiRef("URL API")}} +{{ApiRef("HTML DOM")}} -**`HTMLHyperlinkElementUtils.username`** 属性是一个 {{domxref("USVString")}}包含域名前面指定的用户名。 +**`HTMLAnchorElement.username`** 属性是一个字符串,包含在域名之前指定的用户名。 -## Syntax +## 值 -```plain -string = object.username; -object.username = string; -``` +一个字符串。 + +## 示例 -## Examples +### 从锚点链接中获取用户名 ```js -// Let's be in the document -var anchor = document.getElementByID("myAnchor"); -var result = anchor.username; // Returns:'anonymous' +// 假设文档中含有这样的元素: +const anchor = document.getElementByID("myAnchor"); +anchor.username; // 返回 'anonymous' ``` -## Specifications +## 规范 {{Specifications}} -## Browser compatibility +## 浏览器兼容性 {{Compat}} -## See also +## 参见 -- The {{domxref("HTMLHyperlinkElementUtils")}} interface it belongs to. +- 所属接口 {{domxref("HTMLAnchorElement")}}。