aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/html/element/input/hidden
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/html/element/input/hidden')
-rw-r--r--files/zh-cn/web/html/element/input/hidden/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/zh-cn/web/html/element/input/hidden/index.html b/files/zh-cn/web/html/element/input/hidden/index.html
index c7a5d72c3d..ac523ccaa1 100644
--- a/files/zh-cn/web/html/element/input/hidden/index.html
+++ b/files/zh-cn/web/html/element/input/hidden/index.html
@@ -27,7 +27,7 @@ translation_of: Web/HTML/Element/input/hidden
<table class="properties">
<tbody>
<tr>
- <td><strong>{{anch("值")}}</strong></td>
+ <td><strong><a href="#属性值">属性值</a></strong></td>
<td><code>{{domxref("DOMString")}}</code>代表您要传递回服务器的隐藏数据的值</td>
</tr>
<tr>
@@ -74,7 +74,7 @@ translation_of: Web/HTML/Element/input/hidden
</thead>
<tbody>
<tr>
- <td><code>{{anch("name")}}</code></td>
+ <td><code><a href="#attr-name">name</a></code></td>
<td>与所有输入类型一样,这可以是提交表单时反馈给服务器的 <code>{{HTMLElement("input")}}</code> 的名称;使用特殊属性值 <code>_charset_</code> 则会使当前隐藏 <code>{{HTMLElement("input")}}</code> 的值被反馈为表单内容的字符编码</td>
</tr>
</tbody>
@@ -101,7 +101,7 @@ translation_of: Web/HTML/Element/input/hidden
<p>在这里的步骤 2 思路中,要被更新的 ID 记录保留在隐藏的输入中。 在步骤 3 中提交表单后,该 ID 随记录内容自动发送回服务器。 该 ID 使站点的服务器端组件确切知道哪些记录需要被提交的数据更新的。</p>
-<p>您可以在下面的 <a href="https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/input/hidden#例子">{{anch("例子")}}</a> 部分中看到完整的<a href="https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/input/hidden#例子">示例</a>。</p>
+<p>您可以在下面的 <a href="https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/input/hidden#例子"><a href="#例子">例子</a></a> 部分中看到完整的<a href="https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/input/hidden#例子">示例</a>。</p>
<h3 id="改善网站安全性">改善网站安全性</h3>
@@ -119,7 +119,7 @@ translation_of: Web/HTML/Element/input/hidden
<h2 id="例子">例子</h2>
-<p>让我们看一下如何使用隐藏输入保存正在被编辑的记录的 ID,实现我们先前描述的编辑表单的简单版本(请参阅 <code><a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/hidden#Tracking_edited_content">{{anch("Tracking edited content")}}</a></code>)。</p>
+<p>让我们看一下如何使用隐藏输入保存正在被编辑的记录的 ID,实现我们先前描述的编辑表单的简单版本(请参阅 <code><a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/hidden#Tracking_edited_content"><a href="#跟踪被编辑的内容">跟踪被编辑的内容</a></a></code>)。</p>
<p>编辑表单的 HTML 可能看起来像这样:</p>