aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/html/element/input/time/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/html/element/input/time/index.html')
-rw-r--r--files/zh-cn/web/html/element/input/time/index.html28
1 files changed, 14 insertions, 14 deletions
diff --git a/files/zh-cn/web/html/element/input/time/index.html b/files/zh-cn/web/html/element/input/time/index.html
index c6e2cd736e..6f69436ba7 100644
--- a/files/zh-cn/web/html/element/input/time/index.html
+++ b/files/zh-cn/web/html/element/input/time/index.html
@@ -50,7 +50,7 @@ translation_of: Web/HTML/Element/input/time
<table class="properties">
<tbody>
<tr>
- <td><strong>{{anch("Value")}}</strong></td>
+ <td><strong><a href="#value">Value</a></strong></td>
<td>A {{domxref("DOMString")}} representing a time, or empty.</td>
</tr>
<tr>
@@ -90,7 +90,7 @@ timeControl.value = '15:30';</pre>
<h3 id="Time_value_format">Time value format</h3>
-<p>The <code>value</code> of the <code>time</code> input is always in 24-hour format: <code>hh:mm</code>, regardless of the input format, which is likely to be selected based on the user's locale (or by the user agent). If the time includes seconds (see {{anch("Using the step attribute")}}), the format is always <code>hh:mm:ss</code>. You can learn more about the format of the time value used by this input type in {{SectionOnPage("/en-US/docs/Web/HTML/Date_and_time_formats", "Time strings")}}.</p>
+<p>The <code>value</code> of the <code>time</code> input is always in 24-hour format: <code>hh:mm</code>, regardless of the input format, which is likely to be selected based on the user's locale (or by the user agent). If the time includes seconds (see <a href="#using_the_step_attribute">Using the step attribute</a>), the format is always <code>hh:mm:ss</code>. You can learn more about the format of the time value used by this input type in {{SectionOnPage("/en-US/docs/Web/HTML/Date_and_time_formats", "Time strings")}}.</p>
<p>在此示例中,您可以通过输入时间并查看之后如何更改来查看时间输入的值。</p>
@@ -116,7 +116,7 @@ startTime.addEventListener("input", function() {
<p>{{EmbedLiveSample("Time_value_format", 600, 80)}}</p>
-<p>When a form including a <code>time</code> input is submitted, the value is encoded before being included in the form's data. The form's data entry for a time input will always be in the form <code>name=hh%3Amm</code>, or <code>name=hh%3Amm%3ass</code> if seconds are included (see {{anch("Using the step attribute")}}).</p>
+<p>When a form including a <code>time</code> input is submitted, the value is encoded before being included in the form's data. The form's data entry for a time input will always be in the form <code>name=hh%3Amm</code>, or <code>name=hh%3Amm%3ass</code> if seconds are included (see <a href="#using_the_step_attribute">Using the step attribute</a>).</p>
<h2 id="Additional_attributes">Additional attributes</h2>
@@ -131,19 +131,19 @@ startTime.addEventListener("input", function() {
</thead>
<tbody>
<tr>
- <td><code>{{anch("max")}}</code></td>
- <td>The latest time to accept, in the syntax described under {{anch("Time value format")}}</td>
+ <td><code><a href="#max">max</a></code></td>
+ <td>The latest time to accept, in the syntax described under <a href="#time_value_format">Time value format</a></td>
</tr>
<tr>
- <td><code>{{anch("min")}}</code></td>
+ <td><code><a href="#min">min</a></code></td>
<td>The earliest time to accept as a valid input</td>
</tr>
<tr>
- <td><code>{{anch("readonly")}}</code></td>
+ <td><code><a href="#readonly">readonly</a></code></td>
<td>A Boolean attribute which, if present, indicates that the contents of the <code>time</code> input should not be user-editable</td>
</tr>
<tr>
- <td><code>{{anch("step")}}</code></td>
+ <td><code><a href="#step">step</a></code></td>
<td>The stepping interval to use both for user interfaces purposes and during constraint validation</td>
</tr>
</tbody>
@@ -151,17 +151,17 @@ startTime.addEventListener("input", function() {
<div class="callout-box">Unlike many data types, time values have a <strong>periodic domain</strong>, meaning that the values reach the highest possible value, then wrap back around to the beginning again. For example, specifying a <code>min</code> of <code>14:00</code> and a <code>max</code> of <code>2:00</code> means that the permitted time values start at 2:00 PM, run through midnight to the next day, ending at 2:00 AM.</div>
-<h3 id="htmlattrdefmax">{{htmlattrdef("max")}}</h3>
+<h3 id="max">max</h3>
-<p>A string indicating the latest time to accept, specified in the same {{anch("Time value format", "time value format")}} as described above. If the specified string isn't a valid time, no maximum value is set.</p>
+<p>A string indicating the latest time to accept, specified in the same <a href="#time_value_format">time value format</a> as described above. If the specified string isn't a valid time, no maximum value is set.</p>
-<h3 id="htmlattrdefmin">{{htmlattrdef("min")}}</h3>
+<h3 id="min">min</h3>
-<p>A string specifying the earliest time to accept, given in the {{anch("Time value format", "time value format")}} described previously. If the value specified isn't a valid time string, no minimum value is set.</p>
+<p>A string specifying the earliest time to accept, given in the <a href="#time_value_format">time value format</a> described previously. If the value specified isn't a valid time string, no minimum value is set.</p>
<p>{{page("/en-US/docs/Web/HTML/Element/input/text", "readonly", 0, 1, 2)}}</p>
-<h3 id="htmlattrdefstep">{{htmlattrdef("step")}}</h3>
+<h3 id="step">step</h3>
<p>{{page("/en-US/docs/Web/HTML/Element/input/number", "step-include")}}</p>
@@ -173,7 +173,7 @@ startTime.addEventListener("input", function() {
<p>虽然 data 和 time 输入类型中的时间具有最广泛的浏览器支持,但它尚未接近普及,因此您可能需要提供一种替代方法来输入日期和时间,以便 Safari 用户(和用户)其他非支持浏览器)仍然可以轻松输入时间值。</p>
-<p>We'll look at basic and more complex uses of <code>&lt;input type="time"&gt;</code>, then offer advice on mitigating the browser support issue later on (see {{anch("Handling browser support")}}).</p>
+<p>We'll look at basic and more complex uses of <code>&lt;input type="time"&gt;</code>, then offer advice on mitigating the browser support issue later on (see <a href="#handling_browser_support">Handling browser support</a>).</p>
<h3 id="Basic_uses_of_time">Basic uses of time</h3>