aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/html/element/command/index.html
blob: 99a42fb9db6e3861239ef6b068b43700c4656067 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
---
title: command
slug: Web/HTML/Element/command
translation_of: Web/HTML/Element/command
---
<h2 class="editable" id="Sumário">Sumário</h2>

<p>O elemento <code>command </code>representa um comando que o usuário pode chamar.</p>

<h2 id="Contexto_de_uso">Contexto de uso</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <td>Categorias de conteúdo</td>
   <td><a href="/en/HTML/Content_categories#Flow_content" title="en/HTML/Content categories#Flow content">Flow content</a>, <a href="/en/HTML/Content_categories#Phrasing_content" title="en/HTML/Content categories#Phrasing content">phrasing content</a></td>
  </tr>
  <tr>
   <td>Elementos permitidos</td>
   <td>Nenhum, é um elemento vazio.</td>
  </tr>
  <tr>
   <td>Omissão de tag</td>
   <td>Deve ter uma tag inicial, mas não deve ter uma tag final.</td>
  </tr>
  <tr>
   <td>Elementos pais permitidos</td>
   <td>Qualquer elemento que aceite <a href="/en/HTML/Content_categories#Phrasing_content" title="https://developer.mozilla.org/en/HTML/Content_categories#Phrasing_content">phrasing content</a>.</td>
  </tr>
  <tr>
   <td>Documento normativo</td>
   <td><a class="external" href="http://dev.w3.org/html5/spec/Overview.html#the-command" title="http://dev.w3.org/html5/spec/Overview.html#the-command">HTML5, section 4.11.3</a></td>
  </tr>
 </tbody>
</table>

<h2 id="Atributos">Atributos</h2>

<p>Como todos ou outros elementos HTML, esse elemento suporta os <a href="/en/HTML/Global_attributes" title="en/HTML/Global attributes">global attributes</a>.</p>

<dl>
 <dt>{{ htmlattrdef("checked") }}</dt>
 <dd>Indica se o comando está selecionado ou não. Deve ser omitido a não ser que o atributo <code>type</code> seja <code>checkbox </code>ou <code>radio</code>.</dd>
 <dt>{{ htmlattrdef("disabled") }}</dt>
 <dd>Indica que o elemento não está disponível.</dd>
 <dt>{{ htmlattrdef("icon") }}</dt>
 <dd>Atribui uma figura para representar o comando.</dd>
 <dt>{{ htmlattrdef("label") }}</dt>
 <dd>O nome do comando, como será mostrado para o usuário.</dd>
 <dt>{{ htmlattrdef("radiogroup") }}</dt>
 <dd>Esse atributo dá o nome de um grupo de comandos, com <code>type</code> sendo <code>radio</code>, que vai ser ativado quando o comando for ativado. Esse atributo deve ser omitido a não ser que o atributo <code>type</code> seja <code>radio</code>.</dd>
 <dt>{{ htmlattrdef("type") }}</dt>
 <dd>Esse atributo indica o tipo do comando. Pode ter somente os seguintes valores:
 <ul>
  <li>
   <p><code>command</code> ou vazio que é o estado padrão e indica que é um comando normal.</p>
  </li>
  <li>
   <p><code>checkbox</code> indica que o comando pode ser alternado utilizando uma caixa de seleção.</p>
  </li>
  <li>
   <p><code>radio</code> indica que o comando pode ser alternado utilizando uma radiobutton.</p>
  </li>
 </ul>
 </dd>
</dl>

<h2 id="Interface_do_DOM">Interface do DOM</h2>

<p>Esse elemetno implementa a interface <code><a href="/en/DOM/HTMLCommandElement" rel="internal">HTMLCommandElement</a></code>.</p>

<h2 id="Exemplos">Exemplos</h2>

<pre class="brush: html">&lt;command type="command" label="Save" icon="icons/save.png" onclick="save()"&gt;
</pre>

<h2 id="Compatibilidade_de_navegadores">Compatibilidade de navegadores</h2>

<p>{{ CompatibilityTable() }}</p>

<div id="compat-desktop">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Recurso</th>
   <th>Chrome</th>
   <th>Firefox (Gecko)</th>
   <th>Internet Explorer</th>
   <th>Opera</th>
   <th>Safari</th>
  </tr>
  <tr>
   <td>Suporte básico</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
  </tr>
 </tbody>
</table>
</div>

<div id="compat-mobile">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Recurso</th>
   <th>Android</th>
   <th>Firefox Mobile (Gecko)</th>
   <th>IE Mobile</th>
   <th>Opera Mobile</th>
   <th>Safari Mobile</th>
  </tr>
  <tr>
   <td>Suporte básico</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
   <td>{{ CompatNo() }}</td>
  </tr>
 </tbody>
</table>
</div>

<p> </p>

<p>{{ languages( { "zh-cn": "zh-cn/HTML/Element/command" } ) }}</p>