Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[zh-TW]: update Glossary/Attribute #25294

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions files/zh-tw/glossary/attribute/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,20 @@
title: 標籤屬性
slug: Glossary/Attribute
l10n:
sourceCommit: ada5fa5ef15eadd44b549ecf906423b4a2092f34
sourceCommit: 26635ef6b1a40e538501bd81fdcf98725e14e6ea
---

{{GlossarySidebar}}

**標籤屬性**(attribute)用於擴充 HTML 或 XML {{Glossary("element", "元素")}},可改變其行為或提供後設資料
**屬性**擴展了 {{Glossary("HTML")}}{{Glossary("XML")}} {{Glossary("element", "元素")}},改變其行為或提供後設資料

標籤屬性通常的格式為 `name=value`(屬性的標識符後面接其關聯值)
屬性總是具有 `name="value"` 的形式(屬性的標識符後跟其關聯的值)。你可能會看到沒有等號或值的屬性。這是 HTML 中提供空字串的簡寫。然而,這在 XML 中是無效的:XML 要求所有屬性都必須有明確的值

你可能會看到沒有等於號或者值的標籤屬性,那是一個簡寫,在 HTML 中指代空字符串,或者在 XML 中指代標籤屬性名。

```html
<input required />
<!-- 等同於⋯⋯ -->
<input required="" />
<!-- 或者 -->
<input required="required" />
```
許多 HTML 屬性是{{Glossary("Boolean/HTML", "布林屬性")}}。這些屬性的值僅由屬性的存在或不存在來控制。請參閱{{Glossary("Boolean/HTML", "布林屬性")}}以獲取更多資訊。

## 標籤屬性的反射

標籤屬性可能會被**反射**到一個指定的接口中的屬性,意味著標籤屬性的值可以通過接口屬性來讀取,也能通過設定接口屬性的值來修改標籤屬性的值
標籤屬性可能會被**反射**到一個指定的介面中的屬性,意味著標籤屬性的值可以通過介面屬性來讀取,也能通過設定介面屬性的值來修改標籤屬性的值

例如,`placeholder` 就被反射到了 {{domxref("HTMLInputElement.placeholder")}}。

Expand All @@ -50,3 +42,11 @@ console.log(attr.value); // 打印 `Modified placeholder`

- [HTML 屬性參考](/zh-TW/docs/Web/HTML/Attributes)
- HTML 的[全域屬性](/zh-TW/docs/Web/HTML/Global_attributes)相關資訊。
- XML StartTag Attribute Recommendation in [W3C XML Recommendation](https://www.w3.org/TR/xml#sec-starttags)
- 相關術語:
- {{Glossary("Element")}}
- {{Glossary("Tag")}}
- {{Glossary("HTML")}}
- {{Glossary("XML")}}
- {{Glossary("Boolean/HTML", "布林屬性")}}
- {{Glossary("Enumerated", "枚舉屬性")}}
Loading