From 20876bc3109d657f47640dc3167a2e30ffbd9b52 Mon Sep 17 00:00:00 2001 From: Andi Pieper Date: Thu, 12 Dec 2024 12:50:37 +0100 Subject: [PATCH] linter fixes for zh-tw --- files/zh-tw/learn/css/index.md | 2 +- .../learn/javascript/asynchronous/index.md | 2 +- .../first_steps/a_first_splash/index.md | 2 +- .../learn/tools_and_testing/github/index.md | 2 +- .../canvas_api/tutorial/basic_usage/index.md | 2 +- .../web/api/html_drag_and_drop_api/index.md | 10 +++--- .../api/htmlmediaelement/abort_event/index.md | 16 +++++----- files/zh-tw/web/api/indexeddb_api/index.md | 4 +-- .../indexeddb_api/using_indexeddb/index.md | 2 +- files/zh-tw/web/api/mutationobserver/index.md | 2 +- files/zh-tw/web/html/attributes/index.md | 32 +++++++++---------- files/zh-tw/web/html/element/hr/index.md | 10 +++--- files/zh-tw/web/html/element/nav/index.md | 12 +++---- files/zh-tw/web/html/element/q/index.md | 10 +++--- files/zh-tw/web/html/element/ruby/index.md | 2 +- .../zh-tw/web/html/element/template/index.md | 12 +++---- files/zh-tw/web/html/element/time/index.md | 8 ++--- .../global_attributes/data-_star_/index.md | 2 +- .../guide/expressions_and_operators/index.md | 16 +++++----- .../guide/regular_expressions/index.md | 6 ++-- .../reference/errors/not_defined/index.md | 2 +- .../errors/redeclared_parameter/index.md | 2 +- 22 files changed, 79 insertions(+), 79 deletions(-) diff --git a/files/zh-tw/learn/css/index.md b/files/zh-tw/learn/css/index.md index e03ccb953ff8ba..e8043381650c92 100644 --- a/files/zh-tw/learn/css/index.md +++ b/files/zh-tw/learn/css/index.md @@ -11,7 +11,7 @@ slug: Learn/CSS 我們整理了一門課程,包含了你實現目標需要的所有基礎知識。 -[開始](https://developer.mozilla.org/zh-TW/curriculum/) +[開始](/zh-TW/curriculum/) ## 先備知識 diff --git a/files/zh-tw/learn/javascript/asynchronous/index.md b/files/zh-tw/learn/javascript/asynchronous/index.md index f930c93063cdad..86400df89a567a 100644 --- a/files/zh-tw/learn/javascript/asynchronous/index.md +++ b/files/zh-tw/learn/javascript/asynchronous/index.md @@ -13,7 +13,7 @@ slug: Learn/JavaScript/Asynchronous > > 我們已為你準備一門實現你目標所需要具備的所有基礎知識課程 > -> [**立即開始**](https://developer.mozilla.org/zh-TW/curriculum/) +> [**立即開始**](/zh-TW/curriculum/) ## 事前準備 diff --git a/files/zh-tw/learn/javascript/first_steps/a_first_splash/index.md b/files/zh-tw/learn/javascript/first_steps/a_first_splash/index.md index 7faa2f5b56b07d..37bef8a54ab3db 100644 --- a/files/zh-tw/learn/javascript/first_steps/a_first_splash/index.md +++ b/files/zh-tw/learn/javascript/first_steps/a_first_splash/index.md @@ -619,7 +619,7 @@ guessField.focus(); var guessField = document.querySelector(".guessField"); ``` -我們使用了 {{domxref("document.querySelector", "querySelector()")}} 來取得這個參照,前者是 {{domxref("document")}} 物件的方法。`querySelector()` 接受一個參數 — 一個 [CSS 選擇器](/en-US/docs/Learn/CSS/Building_blocks/Selectors), 會回傳你想要的元素參照。 +我們使用了 {{domxref("document.querySelector", "querySelector()")}} 來取得這個參照,前者是 {{domxref("document")}} 物件的方法。`querySelector()` 接受一個參數 — 一個 [CSS 選擇器](/zh-TW/docs/Learn/CSS/Building_blocks/Selectors), 會回傳你想要的元素參照。 因為現在 `guessField` 中存著一個指向 {{htmlelement("input")}} 元素的參照,它現在可以存取這個元素的屬性(基本上就是存在物件中的變數,其中有一些可能會是常數)和方法(基本上就是存在物件中的函式)了。文字輸入欄的其中一個方法便是 `focus()`,我們便可以透過呼叫這個方法來給予其焦點: diff --git a/files/zh-tw/learn/tools_and_testing/github/index.md b/files/zh-tw/learn/tools_and_testing/github/index.md index acd091a6d0a4a7..97636d97abf1a5 100644 --- a/files/zh-tw/learn/tools_and_testing/github/index.md +++ b/files/zh-tw/learn/tools_and_testing/github/index.md @@ -27,7 +27,7 @@ slug: Learn/Tools_and_testing/GitHub > > 我們準備了一系列的課程當中包括核心的資訊,讓你往你的目標(成為一位前端網頁程式開發者)邁進。 > -> [**開始學習**](https://developer.mozilla.org/zh-TW/curriculum/) +> [**開始學習**](/zh-TW/curriculum/) ## 事前準備 diff --git a/files/zh-tw/web/api/canvas_api/tutorial/basic_usage/index.md b/files/zh-tw/web/api/canvas_api/tutorial/basic_usage/index.md index a7ef41e3d64f35..629d45c33d64bc 100644 --- a/files/zh-tw/web/api/canvas_api/tutorial/basic_usage/index.md +++ b/files/zh-tw/web/api/canvas_api/tutorial/basic_usage/index.md @@ -13,7 +13,7 @@ Let's start this tutorial by looking at the {{HTMLElement("canvas")}} {{Glossary ``` -首先,先來看看 {{HTMLElement("canvas")}},它看起來有點像 {{HTMLElement("img")}} 元素,其中的差異點在於 `` 沒有 `src` 和 `alt` 屬性,`` 只有 [`width`](/zh-TW/docs/Web/HTML/Element/canvas#width) 與 [`height`](/zh-TW/docs/Web/HTML/Element/canvas#height) 這兩個屬性,這兩個屬性皆為非必須、能透過 [DOM](/en-US/docs/Web/API/Document_Object_Model) 屬性設定;若是沒有設定 `width` 和 `height` 屬性,畫布寬預設值為 **300 pixels**、高預設值為 **150 pixels**,我們可以用 [CSS](/zh-TW/docs/Web/CSS) 強制設定元素尺寸,但當渲染時,影像會縮放以符合元素的尺寸。 +首先,先來看看 {{HTMLElement("canvas")}},它看起來有點像 {{HTMLElement("img")}} 元素,其中的差異點在於 `` 沒有 `src` 和 `alt` 屬性,`` 只有 [`width`](/zh-TW/docs/Web/HTML/Element/canvas#width) 與 [`height`](/zh-TW/docs/Web/HTML/Element/canvas#height) 這兩個屬性,這兩個屬性皆為非必須、能透過 [DOM](/zh-TW/docs/Web/API/Document_Object_Model) 屬性設定;若是沒有設定 `width` 和 `height` 屬性,畫布寬預設值為 **300 pixels**、高預設值為 **150 pixels**,我們可以用 [CSS](/zh-TW/docs/Web/CSS) 強制設定元素尺寸,但當渲染時,影像會縮放以符合元素的尺寸。 > [!NOTE] > 如果繪圖結果看起來有些扭曲,可以改試著用\自身的 width 和 height 屬性而不要用 CSS 來設定寬高。 diff --git a/files/zh-tw/web/api/html_drag_and_drop_api/index.md b/files/zh-tw/web/api/html_drag_and_drop_api/index.md index 1e53b6f9844d52..ad2285472ff79c 100644 --- a/files/zh-tw/web/api/html_drag_and_drop_api/index.md +++ b/files/zh-tw/web/api/html_drag_and_drop_api/index.md @@ -17,13 +17,13 @@ HTML 拖放操作基於 {{domxref("Event","DOM 事件模型")}}並且使用繼 所有的[拖曳事件類型](/zh-TW/docs/Web/API/DragEvent#event_types)都有相關的[通用事件處理器](/zh-TW/docs/Web/API/DragEvent#globaleventhandlers)(global event handler)。每一種拖曳事件類型及拖曳通用事件處理器屬性都有說明此事件的參考文件。以下的表格提供了每一種事件的簡要說明,以及參考文件的連結。 -| 事件 | 事件處理器屬性 | 說明 | -| -------------------------------------------------------------- | ------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------- | -| [`drag`](/zh-TW/docs/Web/API/HTMLElement/drag_event) | {{domxref('GlobalEventHandlers.ondrag','ondrag')}} | 於一個元素或文字選取區塊被拖曳時觸發。 | +| 事件 | 事件處理器屬性 | 說明 | +| -------------------------------------------------------------- | ------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [`drag`](/zh-TW/docs/Web/API/HTMLElement/drag_event) | {{domxref('GlobalEventHandlers.ondrag','ondrag')}} | 於一個元素或文字選取區塊被拖曳時觸發。 | | [`dragend`](/zh-TW/docs/Web/API/HTMLElement/dragend_event) | {{domxref('GlobalEventHandlers.ondragend','ondragend')}} | 於拖曳操作結束時觸發(如放開滑鼠按鍵或按下鍵盤的 escape 鍵)。(請參考[結束拖曳](/zh-TW/docs/Web/API/HTML_Drag_and_Drop_API/Drag_operations#dragend)。) | | [`dragenter`](/zh-TW/docs/Web/API/HTMLElement/dragenter_event) | {{domxref('GlobalEventHandlers.ondragenter','ondragenter')}} | 於一個元素或文字選取區塊被拖曳移動進入一個有效的放置目標時觸發。(請參考[指定拖曳目標](/zh-TW/docs/Web/API/HTML_Drag_and_Drop_API/Drag_operations#droptargets)。) | -| [`dragleave`](/zh-TW/docs/Web/API/HTMLElement/dragleave_event) | {{domxref('GlobalEventHandlers.ondragleave','ondragleave')}} | 於一個元素或文字選取區塊被拖曳移動離開一個有效的放置目標時觸發。 | -| [`dragover`](/zh-TW/docs/Web/API/HTMLElement/dragover_event) | {{domxref('GlobalEventHandlers.ondragover','ondragover')}} | 於一個元素或文字選取區塊被拖曳移動經過一個有效的放置目標時觸發(每幾百毫秒觸發一次)。 | +| [`dragleave`](/zh-TW/docs/Web/API/HTMLElement/dragleave_event) | {{domxref('GlobalEventHandlers.ondragleave','ondragleave')}} | 於一個元素或文字選取區塊被拖曳移動離開一個有效的放置目標時觸發。 | +| [`dragover`](/zh-TW/docs/Web/API/HTMLElement/dragover_event) | {{domxref('GlobalEventHandlers.ondragover','ondragover')}} | 於一個元素或文字選取區塊被拖曳移動經過一個有效的放置目標時觸發(每幾百毫秒觸發一次)。 | | [`dragstart`](/zh-TW/docs/Web/API/HTMLElement/dragstart_event) | {{domxref('GlobalEventHandlers.ondragstart','ondragstart')}} | 於使用者開始拖曳一個元素或文字選取區塊時觸發。(請參考[開始拖曳](/zh-TW/docs/Web/API/HTML_Drag_and_Drop_API/Drag_operations#dragstart)。) | | [`drop`](/zh-TW/docs/Web/API/HTMLElement/drop_event) | {{domxref('GlobalEventHandlers.ondrop','ondrop')}} | 於一個元素或文字選取區塊被放置至一個有效的放置目標時觸發。(請參考[執行放置](/zh-TW/docs/Web/API/HTML_Drag_and_Drop_API/Drag_operations#drop)。) | diff --git a/files/zh-tw/web/api/htmlmediaelement/abort_event/index.md b/files/zh-tw/web/api/htmlmediaelement/abort_event/index.md index 0bcad7952441e9..717af7511f21c4 100644 --- a/files/zh-tw/web/api/htmlmediaelement/abort_event/index.md +++ b/files/zh-tw/web/api/htmlmediaelement/abort_event/index.md @@ -24,14 +24,14 @@ slug: Web/API/HTMLMediaElement/abort_event ## 屬性 -| 屬性 | 型態 | 描述 | -| ------------------------------- | ------------------------------------------------ | ----------------------------------------------------------------------------------------------- | -| `target` {{readonlyInline}} | [`EventTarget`](/zh-TW/docs/Web/API/EventTarget) | 事件的目標對象 (DOM 樹中最頂層的對象)。 | -| `type` {{readonlyInline}} | [`DOMString`](/zh-TW/docs/Web/API/DOMString) | 事件的型態。 | -| `bubbles` {{readonlyInline}} | [`Boolean`](/zh-TW/docs/Web/JavaScript/Reference/Global_Objects/Boolean) | 事件是否向上冒泡。 | -| `cancelable` {{readonlyInline}} | [`Boolean`](/zh-TW/docs/Web/JavaScript/Reference/Global_Objects/Boolean) | 事件是否能夠取消。 | -| `view` {{readonlyInline}} | [`WindowProxy`](/zh-TW/docs/Web/API/WindowProxy) | [`document.defaultView`](/zh-TW/docs/Web/API/Document/defaultView) (該文檔(Document)的`window`) | -| `detail` {{readonlyInline}} | `long` (`float`) | 0. | +| 屬性 | 型態 | 描述 | +| ------------------------------- | ------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- | +| `target` {{readonlyInline}} | [`EventTarget`](/zh-TW/docs/Web/API/EventTarget) | 事件的目標對象 (DOM 樹中最頂層的對象)。 | +| `type` {{readonlyInline}} | [`DOMString`](/zh-TW/docs/Web/API/DOMString) | 事件的型態。 | +| `bubbles` {{readonlyInline}} | [`Boolean`](/zh-TW/docs/Web/JavaScript/Reference/Global_Objects/Boolean) | 事件是否向上冒泡。 | +| `cancelable` {{readonlyInline}} | [`Boolean`](/zh-TW/docs/Web/JavaScript/Reference/Global_Objects/Boolean) | 事件是否能夠取消。 | +| `view` {{readonlyInline}} | [`WindowProxy`](/zh-TW/docs/Web/API/WindowProxy) | [`document.defaultView`](/zh-TW/docs/Web/API/Document/defaultView) (該文檔(Document)的`window`) | +| `detail` {{readonlyInline}} | `long` (`float`) | 0. | ## 規範 diff --git a/files/zh-tw/web/api/indexeddb_api/index.md b/files/zh-tw/web/api/indexeddb_api/index.md index 5dc74ca676d7c2..a32ba71a66d3f7 100644 --- a/files/zh-tw/web/api/indexeddb_api/index.md +++ b/files/zh-tw/web/api/indexeddb_api/index.md @@ -7,7 +7,7 @@ slug: Web/API/IndexedDB_API IndexedDB 為用戶端的儲存用 API,可用於大量的結構化資料,並透過索引功能而高效率搜尋資料。[DOM Storage](/zh-TW/docs/Web/API/Web_Storage_API) 適合儲存較少量的資料;IndexedDB 則適合大量結構化資料的儲存方案。 -本篇文章僅為 API 物件的入門技術說明。若需進一步了解,則請參閱 [IndexedDB 基本概念](/en-US/docs/Web/API/IndexedDB_API/Basic_Terminology)。更多細節則可參閱[使用 IndexedDB](/zh-TW/docs/Web/API/IndexedDB_API/Using_IndexedDB)。 +本篇文章僅為 API 物件的入門技術說明。若需進一步了解,則請參閱 [IndexedDB 基本概念](/zh-TW/docs/Web/API/IndexedDB_API/Basic_Terminology)。更多細節則可參閱[使用 IndexedDB](/zh-TW/docs/Web/API/IndexedDB_API/Using_IndexedDB)。 IndexedDB 提供不同 APIs 用於同步與非同步的存取作業。同步 API 僅能用於[Web Workers](/zh-TW/docs/Web/API/Worker) 之中,但尚未有瀏覽器支援同步 API。非同步 API 則用於 Web Workers 內外均可,但 Firefox 目前尚未建構。 @@ -51,7 +51,7 @@ Web 上的 IndexedDB 使用範例,是由 Marco Castelluccio 所提供。Marco ## 另可參閱 -- [IndexedDB 基本概念](/en-US/docs/Web/API/IndexedDB_API/Basic_Terminology) +- [IndexedDB 基本概念](/zh-TW/docs/Web/API/IndexedDB_API/Basic_Terminology) - [使用 IndexedDB](/zh-TW/docs/Web/API/IndexedDB_API/Using_IndexedDB) - [在 IndexedDB 中儲存影像與檔案](https://hacks.mozilla.org/2012/02/storing-images-and-files-in-indexeddb/) - [Indexed Database API 規格](https://www.w3.org/TR/IndexedDB/) diff --git a/files/zh-tw/web/api/indexeddb_api/using_indexeddb/index.md b/files/zh-tw/web/api/indexeddb_api/using_indexeddb/index.md index fdbaef23e9d307..e32c5ce31a922f 100644 --- a/files/zh-tw/web/api/indexeddb_api/using_indexeddb/index.md +++ b/files/zh-tw/web/api/indexeddb_api/using_indexeddb/index.md @@ -9,7 +9,7 @@ IndexedDB 提供了在瀏覽器上儲存保留資料的功能,藉由它,不 ## 關於本文 -本文會帶領各位操作非同步 IndexedDB 的 API,如果不知道甚麼是 IndexedDB,請先看看["IndexedDB 基本礎念"](/en-US/docs/Web/API/IndexedDB_API/Basic_Terminology)。 +本文會帶領各位操作非同步 IndexedDB 的 API,如果不知道甚麼是 IndexedDB,請先看看["IndexedDB 基本礎念"](/zh-TW/docs/Web/API/IndexedDB_API/Basic_Terminology)。 ## 基本操作步驟 diff --git a/files/zh-tw/web/api/mutationobserver/index.md b/files/zh-tw/web/api/mutationobserver/index.md index fa898b1254dc28..49a86402b2beeb 100644 --- a/files/zh-tw/web/api/mutationobserver/index.md +++ b/files/zh-tw/web/api/mutationobserver/index.md @@ -5,7 +5,7 @@ slug: Web/API/MutationObserver {{APIRef("DOM")}} -`MutationObserver` 提供開發人員一個方法,來對 [DOM](/en-US/docs/Web/API/Document_Object_Model) tree 的變動來作反應,這被設計用來替換在 DOM3 事件規範中的 [Mutation Events](/zh-TW/docs/DOM/Mutation_events)。 +`MutationObserver` 提供開發人員一個方法,來對 [DOM](/zh-TW/docs/Web/API/Document_Object_Model) tree 的變動來作反應,這被設計用來替換在 DOM3 事件規範中的 [Mutation Events](/zh-TW/docs/DOM/Mutation_events)。 ## 建構式 diff --git a/files/zh-tw/web/html/attributes/index.md b/files/zh-tw/web/html/attributes/index.md index b4d9678d5e2bfc..105deec4941b44 100644 --- a/files/zh-tw/web/html/attributes/index.md +++ b/files/zh-tw/web/html/attributes/index.md @@ -11,18 +11,18 @@ HTML 中的元素具有**屬性**;而這些屬性可以藉由各種方式去 | 屬性名稱 | 元素 | 描述 | | ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `hidden` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 避免呈現給定的元素,並且保持子元素,例如 script elements、active。 | +| `hidden` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 避免呈現給定的元素,並且保持子元素,例如 script elements、active。 | | `high` | {{ HTMLElement("meter") }} | 指示下界的上限範圍。 | | `href` | {{ HTMLElement("a") }}、{{ HTMLElement("area") }}、{{ HTMLElement("base") }}、{{ HTMLElement("link") }} | 連結資源的 URL。 | | `hreflang` | {{ HTMLElement("a") }}、{{ HTMLElement("area") }}、{{ HTMLElement("link") }} | 指定連結資源的語言。 | | `http-equiv` | {{ HTMLElement("meta") }} | | | `icon` | {{ HTMLElement("command") }} | 指定呈現指令的圖片。 | -| `id` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 經常和 CSS 一起被用來設計特定元素。這個屬性的值必須是唯一的。 | +| `id` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 經常和 CSS 一起被用來設計特定元素。這個屬性的值必須是唯一的。 | | `ismap` | {{ HTMLElement("img") }} | 指示該圖像是伺服器端之影像地圖的一部分。 | -| `itemprop` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | | +| `itemprop` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | | | `kind` | {{ HTMLElement("track") }} | 指明文章 track 的類型。 | | `label` | {{ HTMLElement("track") }} | 指明文章 track 的使用者可讀之標題。 | -| `lang` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 定義該元素中所使用的語言。 | +| `lang` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 定義該元素中所使用的語言。 | | `language` | {{ HTMLElement("script") }} | 定義該元素中所使用的腳本語言。 | | `list` | {{ HTMLElement("input") }} | 指示一串預先定義的選項供使用者參考。 | | `loop` | {{ HTMLElement("audio") }}、{{ HTMLElement("marquee") }}、{{ HTMLElement("video") }} | 指示當媒體完成時,是否應該從一開始的時候播放。 | @@ -52,7 +52,7 @@ HTML 中的元素具有**屬性**;而這些屬性可以藉由各種方式去 | `rows` | {{ HTMLElement("textarea") }} | 定義 textarea 的行數。 | | `rowspan` | {{ HTMLElement("td") }}、{{ HTMLElement("th") }} | 定義表格單元的行數應該被 span over。 | | `sandbox` | {{ HTMLElement("iframe") }} | | -| `spellcheck` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 指示為該元素的拼字檢查是否允許。 | +| `spellcheck` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 指示為該元素的拼字檢查是否允許。 | | `scope` | {{ HTMLElement("th") }} | | | `scoped` | {{ HTMLElement("style") }} | | | `seamless` | {{ HTMLElement("iframe") }} | | @@ -67,11 +67,11 @@ HTML 中的元素具有**屬性**;而這些屬性可以藉由各種方式去 | `srcset` | {{ HTMLElement("img") }} | | | `start` | {{ HTMLElement("ol") }} | 如果第一個數字不是 1 的話,則定義該數。 | | `step` | {{ HTMLElement("input") }} | | -| `style` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 定義多載先前的樣式設定之 CSS 樣式。 | +| `style` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 定義多載先前的樣式設定之 CSS 樣式。 | | `summary` | {{ HTMLElement("table") }} | | -| `tabindex` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 多載瀏覽器的預設頁面標籤之順序並且遵守指定的那個。 | +| `tabindex` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 多載瀏覽器的預設頁面標籤之順序並且遵守指定的那個。 | | `target` | {{ HTMLElement("a") }}、{{ HTMLElement("area") }}、{{ HTMLElement("base") }}、{{ HTMLElement("form") }} | | -| `title` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 當滑鼠標停在元素時,文本會顯示在工具提示中。 | +| `title` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 當滑鼠標停在元素時,文本會顯示在工具提示中。 | | `type` | {{ HTMLElement("button") }}、{{ HTMLElement("input") }}、{{ HTMLElement("command") }}、{{ HTMLElement("embed") }}、{{ HTMLElement("object") }}、{{ HTMLElement("script") }}、{{ HTMLElement("source") }}、{{ HTMLElement("style") }}、{{ HTMLElement("menu") }} | 定義元素的類型。 | | `usemap` | {{ HTMLElement("img") }}、{{ HTMLElement("input") }}、{{ HTMLElement("object") }} | | | `value` | {{ HTMLElement("button") }}、{{ HTMLElement("option") }}、{{ HTMLElement("input") }}、{{ HTMLElement("li") }}、{{ HTMLElement("meter") }}、{{ HTMLElement("progress") }}、{{ HTMLElement("param") }} | 定義將顯示在加載頁面上元素的預設值。 | @@ -82,28 +82,28 @@ HTML 中的元素具有**屬性**;而這些屬性可以藉由各種方式去 | `charset` | {{ HTMLElement("meta") }}、{{ HTMLElement("script") }} | 聲明頁面或腳本的字元編碼。 | | `checked` | {{ HTMLElement("command") }}、{{ HTMLElement("input") }} | 指定在加載頁面上的元素是否要被檢查。 | | `cite` | {{ HTMLElement("blockquote") }}、{{ HTMLElement("del") }}、{{ HTMLElement("ins") }}、{{ HTMLElement("q") }} | 包含一個 URL,用來指出引用或是改變的來源地址。 | -| `class` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 經常使用共同屬性和 CSS 一起設計元素。 | +| `class` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 經常使用共同屬性和 CSS 一起設計元素。 | | `code` | {{ HTMLElement("applet") }} | 指明被加載與執行的 applet 類別文件之 URL。 | | `codebase` | {{ HTMLElement("applet") }} | This attribute gives the absolute or relative URL of the directory where applets' .class files referenced by the code attribute are stored. | | `color` | {{ HTMLElement("basefont") }}、{{ HTMLElement("font") }}、{{ HTMLElement("hr") }} | 該屬性使用命名顏色或十六進制 #RRGGBB 格式來設置文本顏色。注意:這是一個傳統的屬性。請使用 CSS {{ Cssxref("color") }} 特性。 | | `cols` | {{ HTMLElement("textarea") }} | 定義在一個 textarea 中有多少欄位。 | | `colspan` | {{ HTMLElement("td") }}、{{ HTMLElement("th") }} | colspan 屬性定義一個單元格之欄位的數量。 | | `content` | {{ HTMLElement("meta") }} | 一個有關於 `http-equiv` 或是根據上下文 `name` 的值 。 | -| `contenteditable` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 指定元素的內容是否可以被編輯。 | -| `contextmenu` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 定義將作為元素上下文選項單的 {{ HTMLElement("menu") }} 元素之 ID。 | +| `contenteditable` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 指定元素的內容是否可以被編輯。 | +| `contextmenu` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 定義將作為元素上下文選項單的 {{ HTMLElement("menu") }} 元素之 ID。 | | `controls` | {{ HTMLElement("audio") }}、{{ HTMLElement("video") }} | 指定瀏覽器是否應該顯示錄放控制給使用者。 | | `coords` | {{ HTMLElement("area") }} | 一組值指明熱點區域的座標。 | | `data` | {{ HTMLElement("object") }} | 指明 URL 的資源。 | -| `data-*` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 讓你可以將自行定義屬性附加在 HTML 元素上。 | +| `data-*` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 讓你可以將自行定義屬性附加在 HTML 元素上。 | | `datetime` | {{ HTMLElement("del") }}、{{ HTMLElement("ins") }}、{{ HTMLElement("time") }} | 指定元素所相關的日期與時間。 | | `default` | {{ HTMLElement("track") }} | 指定 track 應被啟用,除非使用者的偏好表示不同。 | | `defer` | {{ HTMLElement("script") }} | 指定該頁面被瀏覽完後腳本應被執行。 | -| `dir` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 定義文章的方向。被允許的值有 ltr (Left-To-Right) 或 rtl (Right-To-Left)。 | +| `dir` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 定義文章的方向。被允許的值有 ltr (Left-To-Right) 或 rtl (Right-To-Left)。 | | `dirname` | {{ HTMLElement("input") }}、{{ HTMLElement("textarea") }} | | | `disabled` | {{ HTMLElement("button") }}、{{ HTMLElement("command") }}、{{ HTMLElement("fieldset") }}、{{ HTMLElement("input") }}、{{ HTMLElement("optgroup") }}、{{ HTMLElement("option") }}、{{ HTMLElement("select") }}、{{ HTMLElement("textarea") }} | 指名使用者是否可以與元素互動。 | | `download` | {{ HTMLElement("a") }}、{{ HTMLElement("area") }} | 指定該超連結是用於下載的資源。 | -| `draggable` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 定義元素是否可以拖曳。 | -| `dropzone` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 指定該元素接受它內容的滑鼠落下物。 | +| `draggable` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 定義元素是否可以拖曳。 | +| `dropzone` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 指定該元素接受它內容的滑鼠落下物。 | | `enctype` | {{ HTMLElement("form") }} | 當方法為 POST 的時候,定義格式日期的內容類型。 | | `for` | {{ HTMLElement("label") }}、{{ HTMLElement("output") }} | 描述屬於這一個的元素。 | | `form` | {{ HTMLElement("button") }}、{{ HTMLElement("fieldset") }}、{{ HTMLElement("input") }}、{{ HTMLElement("label") }}、{{ HTMLElement("meter") }}、{{ HTMLElement("object") }}、{{ HTMLElement("output") }}、{{ HTMLElement("progress") }}、{{ HTMLElement("select") }}、{{ HTMLElement("textarea") }} | 指定元素之所有者的格式。 | @@ -112,7 +112,7 @@ HTML 中的元素具有**屬性**;而這些屬性可以藉由各種方式去 | `height` | {{ HTMLElement("canvas") }}、{{ HTMLElement("embed") }}、{{ HTMLElement("iframe") }}、{{ HTMLElement("img") }}、{{ HTMLElement("input") }}、{{ HTMLElement("object") }}、{{ HTMLElement("video") }} | 注意:在有些情況中,例如 {{ HTMLElement("div") }},這是傳統的屬性,而 CSS {{ Cssxref("height") }} 特性應當被使用。在其他的情況中,例如 {{ HTMLElement("canvas") }},高度必須用該屬性來指定。 | | `accept` | {{ HTMLElement("form") }}、{{ HTMLElement("input") }} | 伺服器接受的類型之列表,通常是文件類型。 | | `accept-charset` | {{ HTMLElement("form") }} | 支持字元集的列表。 | -| `accesskey` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 定義鍵盤快捷鍵來啟動或添加焦點到該元素。 | +| `accesskey` | [Global attribute](/zh-TW/docs/HTML/Global_attributes) | 定義鍵盤快捷鍵來啟動或添加焦點到該元素。 | | `action` | {{ HTMLElement("form") }} | 一個程序處理經由該格式提交信息的 URI。 | | `align` | {{ HTMLElement("applet") }}、{{ HTMLElement("caption") }}、{{ HTMLElement("col") }}、{{ HTMLElement("colgroup") }}、{{ HTMLElement("hr") }}、{{ HTMLElement("iframe") }}、{{ HTMLElement("img") }}、{{ HTMLElement("table") }}、{{ HTMLElement("tbody") }}、{{ HTMLElement("td") }}、{{ HTMLElement("tfoot") }} 、{{ HTMLElement("th") }}、{{ HTMLElement("thead") }}、{{ HTMLElement("tr") }} | 指定元素的水平對齊方式。 | | `alt` | {{ HTMLElement("applet") }}、{{ HTMLElement("area") }}、{{ HTMLElement("img") }}、{{ HTMLElement("input") }} | 在圖像無法顯示的情況下,顯示代替文本。 | diff --git a/files/zh-tw/web/html/element/hr/index.md b/files/zh-tw/web/html/element/hr/index.md index f9957b7e0fc5d5..33a40f3b41b897 100644 --- a/files/zh-tw/web/html/element/hr/index.md +++ b/files/zh-tw/web/html/element/hr/index.md @@ -8,11 +8,11 @@ slug: Web/HTML/Element/hr **HTML** 的** `
` 元素**代表在段落層級的焦點轉換(如故事中的場景轉換或某個小節裡的主題移轉)。在之前的 HTML 版本,它代表著一條水平標線。在視覺瀏覽器裡,它現在可能還是以水平標線的型式呈現;但它已經被重新定義為一個語義上的用詞,而不是呈現上的。 | [內容類型](/zh-TW/docs/Web/HTML/Content_categories) | [流內容](/zh-TW/docs/Web/HTML/Content_categories#%e6%b5%81%e5%85%a7%e5%ae%b9%ef%bc%88flow_content%ef%bc%89). | -| ----------------------------------------------- | ------------------------------------------------------------------------------------ | -| Permitted content | 否。這是個 {{Glossary("empty element")}}. | -| 標籤省略 | 一定要有起始標籤、同時絕不能有結束標籤 | -| Permitted parent elements | 任何允許[流內容](/zh-TW/docs/Web/HTML/Content_categories#%e6%b5%81%e5%85%a7%e5%ae%b9%ef%bc%88flow_content%ef%bc%89)的元素。 | -| DOM interface | {{domxref("HTMLHRElement")}} | +| --------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | +| Permitted content | 否。這是個 {{Glossary("empty element")}}. | +| 標籤省略 | 一定要有起始標籤、同時絕不能有結束標籤 | +| Permitted parent elements | 任何允許[流內容](/zh-TW/docs/Web/HTML/Content_categories#%e6%b5%81%e5%85%a7%e5%ae%b9%ef%bc%88flow_content%ef%bc%89)的元素。 | +| DOM interface | {{domxref("HTMLHRElement")}} | ## 屬性 diff --git a/files/zh-tw/web/html/element/nav/index.md b/files/zh-tw/web/html/element/nav/index.md index 54c6d72dffbd9e..db659d8eb56f3f 100644 --- a/files/zh-tw/web/html/element/nav/index.md +++ b/files/zh-tw/web/html/element/nav/index.md @@ -8,12 +8,12 @@ slug: Web/HTML/Element/nav **HTML \