blob: 7e5e13b1f31935f1642eac22a2e41cc9642845ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
---
title: autocapitalize
slug: Web/HTML/Global_attributes/autocapitalize
tags:
- Atributos globales
- Autocapitalize
- HTML
translation_of: Web/HTML/Global_attributes/autocapitalize
---
<p>{{HTMLSidebar("Global_attributes")}}</p>
<p>The <code><strong>autocapitalize</strong></code> <a href="/zh-CN/docs/Web/HTML/Global_attributes">全局属性</a> 是一个枚举属性,它控制用户输入/编辑文本输入时文本输入是否自动大写,以及如何自动大写。属性必须取下列值之一:</p>
<ul>
<li><code>off</code> or <code>none</code>: 没有应用自动大写(所有字母都默认为小写字母)。</li>
<li><code>on</code> or <code>sentences</code>: 每个<strong>句子</strong>的第一个字母默认为大写字母;所有其他字母都默认为小写字母。</li>
<li><code>words</code>: 每个<strong>单词</strong>的第一个字母默认为大写字母;所有其他字母都默认为小写字母。</li>
<li><code>characters</code>: 所有的<strong>字母</strong>都默认为大写。</li>
</ul>
<p>在物理键盘上输入时,<code>autocapitalize</code> 属性不会影响行为。相反,它会影响其他输入机制的行为,比如移动设备的虚拟键盘和语音输入。这种机制的行为是,它们经常通过自动地将第一个句子的字母大写来帮助用户。<code>autocapitalize</code> 属性使作者能够覆盖每个元素的行为。</p>
<p><code>autocapitalize</code> 属性永远不会为带有 {{htmlattrxref("type", "input")}} 属性,其值为 <code>url</code>, <code>email</code> 或 <code>password</code>的 {{HTMLElement("input")}} 元素启用自动大写。</p>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', "interaction.html#autocapitalization", "autocapitalize")}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("html.global_attributes.autocapitalize")}}</p>
|