aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/api
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-tw/web/api')
-rw-r--r--files/zh-tw/web/api/console/index.html2
-rw-r--r--files/zh-tw/web/api/cssstylesheet/index.html2
-rw-r--r--files/zh-tw/web/api/element/getattribute/index.html2
-rw-r--r--files/zh-tw/web/api/event/eventphase/index.html2
-rw-r--r--files/zh-tw/web/api/fetch_api/using_fetch/index.html2
-rw-r--r--files/zh-tw/web/api/filesystem/index.html2
-rw-r--r--files/zh-tw/web/api/fullscreen_api/index.html2
-rw-r--r--files/zh-tw/web/api/html_drag_and_drop_api/index.html2
-rw-r--r--files/zh-tw/web/api/navigator/registerprotocolhandler/index.html2
-rw-r--r--files/zh-tw/web/api/setinterval/index.html2
10 files changed, 10 insertions, 10 deletions
diff --git a/files/zh-tw/web/api/console/index.html b/files/zh-tw/web/api/console/index.html
index 36320a69a8..914a0f3523 100644
--- a/files/zh-tw/web/api/console/index.html
+++ b/files/zh-tw/web/api/console/index.html
@@ -21,7 +21,7 @@ translation_of: Web/API/Console
<pre class="brush: js">console.log("Failed to open the specified link")</pre>
-<p>This page documents the {{anch("Methods")}} available on the <code>Console</code> object and gives a few {{anch("Usage")}} examples.</p>
+<p>This page documents the <a href="#methods">Methods</a> available on the <code>Console</code> object and gives a few <a href="#usage">Usage</a> examples.</p>
<p>{{AvailableInWorkers}}</p>
diff --git a/files/zh-tw/web/api/cssstylesheet/index.html b/files/zh-tw/web/api/cssstylesheet/index.html
index d59efba049..9b3725c797 100644
--- a/files/zh-tw/web/api/cssstylesheet/index.html
+++ b/files/zh-tw/web/api/cssstylesheet/index.html
@@ -15,7 +15,7 @@ translation_of: Web/API/CSSStyleSheet
<p>A style sheet consists of <em>{{domxref("CSSRule", "rules", "", 1)}}</em>, such as <em>{{domxref("CSSStyleRule", "style rules", "", 1)}}</em><em> </em>("<code>h1,h2 { font-size: 16pt }"</code>), various <em>at-rules</em> (<code>@import</code>, <code>@media</code>, ...), etc. This interface lets you inspect and modify the list of rules in the stylesheet.</p>
-<p>See the {{anch("Notes")}} section for the various ways a CSSStyleSheet object can be obtained.</p>
+<p>See the <a href="#notes">Notes</a> section for the various ways a CSSStyleSheet object can be obtained.</p>
<h2 id="Properties">Properties</h2>
diff --git a/files/zh-tw/web/api/element/getattribute/index.html b/files/zh-tw/web/api/element/getattribute/index.html
index 15235c37bf..9ef7de7345 100644
--- a/files/zh-tw/web/api/element/getattribute/index.html
+++ b/files/zh-tw/web/api/element/getattribute/index.html
@@ -7,7 +7,7 @@ translation_of: Web/API/Element/getAttribute
<h2 id="Summary" name="Summary">摘要</h2>
-<p><span class="seoSummary"><code>getAttribute()</code> 函式會回傳該網頁元素的屬性</span>。 如果該屬性不存在,其回傳值會是<code>null或</code> <code>""</code> (空字串); 詳見 {{Anch("Notes")}} 。</p>
+<p><span class="seoSummary"><code>getAttribute()</code> 函式會回傳該網頁元素的屬性</span>。 如果該屬性不存在,其回傳值會是<code>null或</code> <code>""</code> (空字串); 詳見 <a href="#notes">Notes</a> 。</p>
<h2 id="Syntax" name="Syntax">語法</h2>
diff --git a/files/zh-tw/web/api/event/eventphase/index.html b/files/zh-tw/web/api/event/eventphase/index.html
index e146e7b230..1670960bb8 100644
--- a/files/zh-tw/web/api/event/eventphase/index.html
+++ b/files/zh-tw/web/api/event/eventphase/index.html
@@ -12,7 +12,7 @@ translation_of: Web/API/Event/eventPhase
<pre class="brush: js"><em>var phase</em> = event.eventPhase;
</pre>
-<p>回傳一個整數值以代表目前事件於事件流中的傳遞階段,可能的值將於{{anch("事件傳遞階段常數")}}說明。</p>
+<p>回傳一個整數值以代表目前事件於事件流中的傳遞階段,可能的值將於<a href="#事件傳遞階段常數">事件傳遞階段常數</a>說明。</p>
<h2 id="常數">常數</h2>
diff --git a/files/zh-tw/web/api/fetch_api/using_fetch/index.html b/files/zh-tw/web/api/fetch_api/using_fetch/index.html
index ae86951ce1..4316965217 100644
--- a/files/zh-tw/web/api/fetch_api/using_fetch/index.html
+++ b/files/zh-tw/web/api/fetch_api/using_fetch/index.html
@@ -46,7 +46,7 @@ translation_of: Web/API/Fetch_API/Using_Fetch
<p>回傳的 response 需要透過 {{domxref("Body.json","json()")}} (在 {{domxref("Body")}} 可以找到定義, Body 是用 {{domxref("Request")}} 和 {{domxref("Response")}} 實作出來的物件.)</p>
<div class="note">
-<p><strong>備註</strong>: 其實 Body 還提供了其他類似的功能可以將內容輸成其他類型格式,詳見{{anch("Body")}} </p>
+<p><strong>備註</strong>: 其實 Body 還提供了其他類似的功能可以將內容輸成其他類型格式,詳見<a href="#body">Body</a> </p>
</div>
<p>Fetch 請求的安全性 <a href="/en-US/docs/Security/CSP/CSP_policy_directives">Content Security Policy</a>(內容安全策略) 是由 header 中的 <code>connect-src</code> directive 所設定 ,並非其他 directive ( 比如:img-src、default-src 等)。</p>
diff --git a/files/zh-tw/web/api/filesystem/index.html b/files/zh-tw/web/api/filesystem/index.html
index 61c1141eb6..c694dcf786 100644
--- a/files/zh-tw/web/api/filesystem/index.html
+++ b/files/zh-tw/web/api/filesystem/index.html
@@ -10,7 +10,7 @@ translation_of: Web/API/FileSystem
<p><strong><code>FileSystem </code></strong><code>實作文件和目錄介面,描述一個檔案系統。在任何檔案系統上,這個物件包含</code> {{domxref("FileSystemEntry.filesystem", "filesystem")}}的特性。某些網頁瀏覽器提供額外的API去創建和管理檔案系統,如Google Chrome的{{domxref("LocalFileSystem.requestFileSystem", "requestFileSystem()")}}函式。</p>
<div class="note">
-<p>此介面並非標準API, 代表規格並未依造標準制定, 因此必須注意並非所有網頁瀏覽器都有實作此介面, 有實作的網頁瀏覽器可能只有實作一小部分. 請在{{anch("Browser compatibility")}} 查看更多細節.</p>
+<p>此介面並非標準API, 代表規格並未依造標準制定, 因此必須注意並非所有網頁瀏覽器都有實作此介面, 有實作的網頁瀏覽器可能只有實作一小部分. 請在<a href="#browser_compatibility">Browser compatibility</a> 查看更多細節.</p>
</div>
<h2 id="基礎概念">基礎概念</h2>
diff --git a/files/zh-tw/web/api/fullscreen_api/index.html b/files/zh-tw/web/api/fullscreen_api/index.html
index 881d22bbac..42e1ab1ee8 100644
--- a/files/zh-tw/web/api/fullscreen_api/index.html
+++ b/files/zh-tw/web/api/fullscreen_api/index.html
@@ -61,7 +61,7 @@ if (elem.requestFullscreen) {
<h2 id="離開全螢幕模式">離開全螢幕模式</h2>
-<p>使用者永遠可以自行離開全螢幕模式,詳見 {{ anch("Things your users want to know") }}。您也可以呼叫 {{domxref("Document.exitFullscreen()")}} 方法來達到相同效果。</p>
+<p>使用者永遠可以自行離開全螢幕模式,詳見 <a href="#things_your_users_want_to_know">Things your users want to know</a>。您也可以呼叫 {{domxref("Document.exitFullscreen()")}} 方法來達到相同效果。</p>
<h2 id="其他資訊">其他資訊</h2>
diff --git a/files/zh-tw/web/api/html_drag_and_drop_api/index.html b/files/zh-tw/web/api/html_drag_and_drop_api/index.html
index ac7be3f0b0..5c47136d42 100644
--- a/files/zh-tw/web/api/html_drag_and_drop_api/index.html
+++ b/files/zh-tw/web/api/html_drag_and_drop_api/index.html
@@ -81,7 +81,7 @@ translation_of: Web/API/HTML_Drag_and_Drop_API
<p>{{domxref("DataTransfer")}} 與 {{domxref("DataTransferItem")}} 介面的最大不同,就是前者使用同步的 {{domxref("DataTransfer.getData","getData()")}} 方法訪問拖放單元的資料;後者則使用非同步的 {{domxref("DataTransferItem.getAsString","getAsString()")}} 方法訪問。</p>
-<p class="note">注意:{{domxref("DragEvent")}} 與 {{domxref("DataTransfer")}} 介面受廣泛的桌面瀏覽器支援。但只有少數瀏覽器支援 {{domxref("DataTransferItem")}} 與 {{domxref("DataTransferItemList")}} 介面。請參見 {{anch("Interoperability")}} 以取得有關拖放功能互通性的資訊。</p>
+<p class="note">注意:{{domxref("DragEvent")}} 與 {{domxref("DataTransfer")}} 介面受廣泛的桌面瀏覽器支援。但只有少數瀏覽器支援 {{domxref("DataTransferItem")}} 與 {{domxref("DataTransferItemList")}} 介面。請參見 <a href="#interoperability">Interoperability</a> 以取得有關拖放功能互通性的資訊。</p>
<h3 id="Gecko-specific_interfaces">Gecko-specific interfaces</h3>
diff --git a/files/zh-tw/web/api/navigator/registerprotocolhandler/index.html b/files/zh-tw/web/api/navigator/registerprotocolhandler/index.html
index f12987d26f..7122e895e9 100644
--- a/files/zh-tw/web/api/navigator/registerprotocolhandler/index.html
+++ b/files/zh-tw/web/api/navigator/registerprotocolhandler/index.html
@@ -40,7 +40,7 @@ translation_of: Web/API/Navigator/registerProtocolHandler
<h2 id="Permitted_schemes">Permitted schemes</h2>
-<p>For security reasons, <code>registerProtocolHandler()</code> has restrictions on which schemes may be registered. A custom scheme may be registered as long as the scheme's name begins with "web+", is at least five characters long (including the "web+" prefix), and has only lower-case ASCII letters in its name. For example, "web+burger", as shown in the {{anch("Example")}} below.</p>
+<p>For security reasons, <code>registerProtocolHandler()</code> has restrictions on which schemes may be registered. A custom scheme may be registered as long as the scheme's name begins with "web+", is at least five characters long (including the "web+" prefix), and has only lower-case ASCII letters in its name. For example, "web+burger", as shown in the <a href="#example">Example</a> below.</p>
<p>Otherwise, the scheme must be one of the schemes on the whitelist below:</p>
diff --git a/files/zh-tw/web/api/setinterval/index.html b/files/zh-tw/web/api/setinterval/index.html
index ac8ee376e0..031d48e764 100644
--- a/files/zh-tw/web/api/setinterval/index.html
+++ b/files/zh-tw/web/api/setinterval/index.html
@@ -22,7 +22,7 @@ original_slug: Web/API/WindowOrWorkerGlobalScope/setInterval
<dt><code>code</code></dt>
<dd>An optional syntax allows you to include a string instead of a function, which is compiled and executed every <code>delay</code> milliseconds. This syntax is <em>not recommended</em> for the same reasons that make using {{jsxref("eval", "eval()")}} a security risk.</dd>
<dt><code>delay</code>{{optional_inline}}</dt>
- <dd>The time, in milliseconds (thousandths of a second), the timer should delay in between executions of the specified function or code. See {{anch("Delay restrictions")}} below for details on the permitted range of <code>delay</code> values.</dd>
+ <dd>The time, in milliseconds (thousandths of a second), the timer should delay in between executions of the specified function or code. See <a href="#delay_restrictions">Delay restrictions</a> below for details on the permitted range of <code>delay</code> values.</dd>
<dt><code>arg1, ..., argN</code> {{optional_inline}}</dt>
<dd>Additional arguments which are passed through to the function specified by <em>func</em> once the timer expires.</dd>
</dl>