aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/htmlinputelement/index.html
blob: 50aff415ab6084d771f12eb37eeb257032414a95 (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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
---
title: HTMLInputElement
slug: Web/API/HTMLInputElement
tags:
  - API
  - HTML DOM
  - Interface
  - NeedsNewLayout
  - NeedsTranslation
  - Reference
  - TopicStub
translation_of: Web/API/HTMLInputElement
---
<div>{{ APIRef("HTML DOM") }}</div>

<p><strong><code>HTMLInputElement</code></strong> 接口提供了特定的属性和方法(继承自常规的{{domxref("HTMLElement", "HTML元素")}}接口)用于管理输入元素的布局和外观。</p>

<p>{{InheritanceDiagram(600,120)}}</p>

<h2 id="Properties" name="Properties">属性</h2>

<table class="standard-table">
 <caption>与父表单相关的属性</caption>
 <thead>
 </thead>
 <tbody>
  <tr>
   <td><code>form </code>{{readonlyInline}}</td>
   <td><em><code>{{domxref("HTMLFormElement")}} object:</code></em>  返回一个父表单元素的引用。</td>
  </tr>
  <tr>
   <td><code>formAction</code></td>
   <td><em><code>string</code>: </em><strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("formaction", "input") }} 属性, 包含处理元素提交信息程序的URI. 这会重写父表单的 {{ htmlattrxref("action", "form") }} 属性.</td>
  </tr>
  <tr>
   <td><code>formEncType</code></td>
   <td><em><code>string</code>:</em> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("formenctype", "input") }} 属性, 包含将表单提交到服务器的内容类型. 这会重写父表单的 {{ htmlattrxref("enctype", "form") }} 属性.</td>
  </tr>
  <tr>
   <td><code>formMethod</code></td>
   <td><em><code>string</code>:</em> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("formmethod", "input") }} 属性, 包含浏览器用于提交表单的HTTP方法. 这会重写父表单的 {{ htmlattrxref("method", "form") }} 属性.</td>
  </tr>
  <tr>
   <td><code>formNoValidate</code></td>
   <td><em><code>boolean</code>:</em> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("formnovalidate", "input") }} 属性, 表示在表单提交时不对其进行验证. 这会重写父表单的 {{ htmlattrxref("novalidate", "form") }} 属性.</td>
  </tr>
  <tr>
   <td><code>formTarget</code></td>
   <td><em><code>string</code>:</em> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("formtarget", "input") }} 属性, 包含一个名称或关键字, 表示在提交表单后接收响应的显示位置. 这会重写父表单的 {{ htmlattrxref("target", "form") }} 属性.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>可用于任何非隐藏输入元素的属性</caption>
 <tbody>
  <tr>
   <td><code>name</code></td>
   <td><em><code>string</code>:</em> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("name", "input") }} 属性, 包含<font face="consolas, Liberation Mono, courier, monospace"><span style="background-color: rgba(220, 220, 220, 0.5);"></span></font>名称.</td>
  </tr>
  <tr>
   <td><code>type</code></td>
   <td><code><em>string:</em></code> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("type", "input") }} 属性, 包含<font face="consolas, Liberation Mono, courier, monospace"><span style="background-color: rgba(220, 220, 220, 0.5);"></span></font>显示类型. 查看 {{ HTMLElement("input") }}{{ htmlattrxref("type", "input") }} 属性可用值.</td>
  </tr>
  <tr>
   <td><code>disabled</code></td>
   <td><em><code>boolean</code>:</em> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("disabled", "input") }} 属性, 表示是否禁用 {{ HTMLElement("input") }}. 该元素的值将不会被提交. 也可以查看 {{ htmlattrxref("readOnly", "input") }} </td>
  </tr>
  <tr>
   <td><code>autofocus</code></td>
   <td><code><em>boolean:</em></code> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("autofocus", "input") }} 属性, 指定的 {{ HTMLElement("input") }} 在页面加载时应当具有输入焦点, 例如通过键入不同的控件. 在文档中只有一个表单元素可以拥有 {{htmlattrxref("autofocus","input")}} 属性. 如果 {{htmlattrxref("type","input")}} 属性被设置为 <code>hidden</code> 则无效(即不可为隐藏控件设置自动焦点).</td>
  </tr>
  <tr>
   <td><code>required</code></td>
   <td><em><code>boolean</code>:</em> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("required", "input") }} 属性, 表示用户必填项.</td>
  </tr>
  <tr>
   <td><code>value</code></td>
   <td><code><em>string:</em></code> <strong>返回/ 设置</strong> 当前控件的值.
    <p class="note"><strong>提示:</strong> 如果用户输入与预期不同,可能会返回空.</p>
   </td>
  </tr>
  <tr>
   <td><code>validity</code> {{readonlyInline}}</td>
   <td><code><em>{{domxref("ValidityState")}} object:</em></code> Returns the validity state that this element is in.</td>
  </tr>
  <tr>
   <td><code>validationMessage</code> {{readonlyInline}}</td>
   <td><code><em>string:</em></code> <strong>Returns</strong> a localized message that describes the validation constraints that the control does not satisfy (if any). This is the empty string if the control is not a candidate for constraint validation ({{htmlattrxref("willValidate","input")}} is false), or it satisfies its constraints.</td>
  </tr>
  <tr>
   <td><code>willValidate </code>{{readonlyInline}}</td>
   <td><em><code>{{jsxref("Boolean")}}:</code></em> <strong>Indicates</strong> whether the element is a candidate for constraint validation. It is false if any conditions bar it from constraint validation.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption><a id="Properties_checkbox_radio" name="Properties_checkbox_radio"></a>仅适用于类型为"checkbox" 或 "radio"元素的属性</caption>
 <tbody>
  <tr>
   <td><code>checked</code></td>
   <td> <code><em>boolean:</em></code> <strong>返回/ 设置</strong> 当前选中状态,当控件{{htmlattrxref("type","input")}} 是 <code>checkbox</code> 或 <code>radio时</code>.</td>
  </tr>
  <tr>
   <td><code>defaultChecked</code></td>
   <td><em><code>boolean:</code></em> <strong>返回/ 设置</strong> the default state of a radio button or checkbox as originally specified in HTML that created this object.</td>
  </tr>
  <tr>
   <td><code><a id="indeterminate" name="indeterminate"></a>indeterminate</code></td>
   <td><code><em>boolean:</em></code> <strong>indicates</strong> that the checkbox is neither on nor off. Changes the appearance to resemble a third state. Does not affect the value of the <strong>checked</strong> 属性, and clicking the checkbox will set the value to false.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>仅适用于类型为"image"元素的属性</caption>
 <tbody>
  <tr>
   <td><code>alt</code></td>
   <td><em><code>string</code>: </em><strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("alt", "input") }} 属性, 包含 alternative text to use when {{htmlattrxref("type","input")}} is <code>image.</code></td>
  </tr>
  <tr>
   <td><code>height</code></td>
   <td><em><code>string</code>: </em><strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("height", "input") }} 属性, which defines the height of the image displayed for the button, if the value of {{htmlattrxref("type","input")}} is <code>image</code>.</td>
  </tr>
  <tr>
   <td><code>src</code></td>
   <td><code><em>string:</em></code> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("src", "input") }} 属性, which specifies a URI for the location of an image to display on the graphical submit button, if the value of {{htmlattrxref("type","input")}} is <code>image</code>; otherwise it is ignored.</td>
  </tr>
  <tr>
   <td><code>width</code></td>
   <td><code><em>string:</em></code> <strong>返回/ 设置</strong> the document's {{ htmlattrxref("width", "input") }} 属性, which defines the width of the image displayed for the button, if the value of {{htmlattrxref("type","input")}} is <code>image</code>.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>仅适用于类型为"file"元素的属性</caption>
 <tbody>
  <tr>
   <td><code>accept</code></td>
   <td><em><code>string</code>: </em><strong>Returns / Sets</strong> 元素的 {{ htmlattrxref("accept", "input") }} 属性, 包含 comma-separated list of file types accepted by the server when {{htmlattrxref("type","input")}} is <code>file</code>.</td>
  </tr>
  <tr>
   <td><code>allowdirs</code> {{non-standard_inline}}</td>
   <td>boolean: Part of the non-standard Directory Upload API; <strong>indicates</strong> whether or not to allow directories and files both to be selected in the file list. Implemented only in Firefox and is hidden behind a preference.</td>
  </tr>
  <tr>
   <td><a id="files_prop" name="files_prop"><code>files</code></a></td>
   <td><strong>Returns/accepts</strong> a {{domxref("FileList")}} object, which contains a list of {{domxref("File")}} objects representing the files selected for upload.</td>
  </tr>
  <tr>
   <td>{{domxref("HTMLInputElement.webkitdirectory", "webkitdirectory")}} {{Non-standard_inline}}</td>
   <td>boolean:<strong> Returns</strong> the {{htmlattrxref("webkitdirectory", "input")}} 属性; if true, the file system picker interface only accepts directories instead of files.</td>
  </tr>
  <tr>
   <td>{{domxref("HTMLInputElement.webkitEntries", "webkitEntries")}} {{Non-standard_inline}}</td>
   <td>Array of {{domxref("FileSystemEntry")}} objects <strong>describing</strong> the currently-selected files or directories.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>仅适用于文本或数字输入元素的属性</caption>
 <tbody>
  <tr>
   <td><code>autocomplete</code></td>
   <td><em><code>string</code>: </em><strong>返回/ 设置</strong> 元素的 {{htmlattrxref("autocomplete", "input")}} 属性, indicating whether the value of the control can be automatically completed by the browser. Ignored if the value of the {{htmlattrxref("type","input")}} 属性is <code>hidden</code>, <code>checkbox</code>, <code>radio</code>, <code>file</code>, or a button type (<code>button</code>, <code>submit</code>, <code>reset</code>, <code>image</code>). Possible values are:<br>
    "on": the browser can autocomplete the value using previously stored value<br>
    "off": the user must explicity enter a value</td>
  </tr>
  <tr>
   <td><code>maxLength</code></td>
   <td><em><code>long</code>:</em> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("maxlength", "input") }} 属性, 包含 the <u><strong>maximum <strong>l</strong>ength of characters</strong></u> (in Unicode code points) that the value can have. (If you set this to a negative number, an exception will be thrown.)</td>
  </tr>
  <tr>
   <td><code>size</code></td>
   <td><em><code>unsigned long</code>:</em> <strong>返回/ 设置 </strong>元素的 {{ htmlattrxref("size", "input") }} 属性, 包含 <u><strong>size of the control</strong></u>. This value is in pixels unless the value of {{htmlattrxref("type","input")}} is <code>text</code> or <code>password</code>, in which case, it is an integer number of characters. Applies only when {{htmlattrxref("type","input")}} is set to <code>text</code>, <code>search</code>, <code>tel</code>, <code>url</code>, <code>email</code>, or <code>password</code>; otherwise it is ignored.</td>
  </tr>
  <tr>
   <td><code>pattern</code></td>
   <td><em><code>string</code>:</em> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("pattern", "input") }} 属性, 包含 a <u><strong>regular expression</strong></u> that the control's value is checked against.  Use the {{htmlattrxref("title","input")}} 属性to describe the pattern to help the user. This 属性applies when the value of the {{htmlattrxref("type","input")}} 属性is <code>text</code>, <code>search</code>, <code>tel</code>, <code>url</code> or <code>email</code>; otherwise it is ignored.</td>
  </tr>
  <tr>
   <td><code>placeholder</code></td>
   <td><em><code>string</code>: </em><strong>返回/ 设置 </strong>元素的 {{ htmlattrxref("placeholder", "input") }} 属性, 包含 a hint to the user of what can be entered in the control. The placeholder text must not contain carriage returns or line-feeds. This 属性applies when the value of the {{htmlattrxref("type","input")}} 属性is <code>text</code>, <code>search</code>, <code>tel</code>, <code>url</code> or <code>email</code>; otherwise it is ignored.</td>
  </tr>
  <tr>
   <td><code>readOnly</code></td>
   <td><em><code>boolean</code>:</em><strong> 返回/ 设置</strong> 元素的 {{ htmlattrxref("readonly", "input") }} 属性, indicating that the user cannot modify the value of the control.<br>
    {{HTMLVersionInline(5)}}This is ignored if the value of the {{htmlattrxref("type","input")}} 属性is <code>hidden</code>, <code>range</code>, <code>color</code>, <code>checkbox</code>, <code>radio</code>, <code>file</code>, or a button type.</td>
  </tr>
  <tr>
   <td><code>min</code></td>
   <td><em><code>string</code>:</em> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("min", "input") }} 属性, 包含 the minimum (numeric or date-time) value for this item, which must not be greater than its maximum ({{htmlattrxref("max","input")}} 属性) value.</td>
  </tr>
  <tr>
   <td><code>max</code></td>
   <td><em><code>string</code>:</em> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("max", "input") }} 属性, 包含 the maximum (numeric or date-time) value for this item, which must not be less than its minimum (<strong>min</strong> 属性) value.</td>
  </tr>
  <tr>
   <td><code>selectionStart</code></td>
   <td><em><code>unsigned long</code>:</em> <strong>返回/ 设置</strong> the beginning index of the selected text. When nothing is selected, this returns the position of the text input cursor (caret) inside of the {{HTMLElement("input")}} element.</td>
  </tr>
  <tr>
   <td><code>selectionEnd</code></td>
   <td><em><code>unsigned long</code>:</em> <strong>返回/ 设置 </strong>the end index of the selected text. When there's no selection, this returns the offset of the character immediately following the current text input cursor position.</td>
  </tr>
  <tr>
   <td><code>selectionDirection</code></td>
   <td><em><code>string</code>:</em> <strong>返回/ 设置</strong> the direction in which selection occurred. Possible values are:<br>
    <code>"forward"</code> if selection was performed in the start-to-end direction of the current locale,<br>
    <code>"backward"</code> for the opposite direction,<br>
    <code>"none"</code> if the direction is unknown."</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>未分类的属性</caption>
 <tbody>
  <tr>
   <td><code>defaultValue</code></td>
   <td><em><code>string:</code></em> <strong>返回/ 设置</strong> the default value as originally specified in the HTML that created this object.</td>
  </tr>
  <tr>
   <td><code>dirName</code></td>
   <td><em><code>string:</code></em> <strong>返回/ 设置 </strong>the directionality of the element.</td>
  </tr>
  <tr>
   <td><code>accessKey</code></td>
   <td><em><code>string</code>: <strong>返回</strong></em> a string 包含 a single character that switches input focus to the control when pressed.</td>
  </tr>
  <tr>
   <td><code>list</code> {{readonlyInline}}</td>
   <td><em><code>{{domxref("HTMLElement")}} object:</code></em> <strong>返回</strong> the element pointed by the {{ htmlattrxref("list", "input") }} 属性. The property may be <code>null</code> if no HTML element found in the same tree.</td>
  </tr>
  <tr>
   <td><code>multiple</code></td>
   <td><em><code>boolean</code>:</em> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("multiple", "input") }} 属性, indicating whether more than one value is possible (e.g., multiple files).</td>
  </tr>
  <tr>
   <td><code>files</code></td>
   <td><em><code>{{domxref("FileList")}} array:</code></em> <strong>返回</strong>the list of selected files.</td>
  </tr>
  <tr>
   <td>{{domxref("HTMLInputElement.labels")}} {{readonlyInline}}</td>
   <td><code><em>{{domxref("NodeList")}} array:</em></code> <strong>返回</strong>a list of {{ HTMLElement("label") }} elements that are labels for this element.</td>
  </tr>
  <tr>
   <td><code>step</code></td>
   <td><code><em>string:</em></code> <strong>返回/ 设置</strong> 元素的 {{ htmlattrxref("step", "input") }} 属性, which works with<strong> </strong>{{htmlattrxref("min","input")}} and {{htmlattrxref("max","input")}} to limit the increments at which a numeric or date-time value can be set. It can be the string <code>any</code> or a positive floating point number. If this is not set to <code>any</code>, the control accepts only values at multiples of the step value greater than the minimum.</td>
  </tr>
  <tr>
   <td><code>valueAsDate</code></td>
   <td><code><em>{{jsxref("Date")}} object:</em></code> Returns / Sets the value of the element, interpreted as a date, or <code>null</code> if conversion is not possible.</td>
  </tr>
  <tr>
   <td><code>valueAsNumber</code></td>
   <td><code>double</code>: <strong>返回</strong>the value of the element, interpreted as one of the following, in order:
    <ul>
     <li>a time value</li>
     <li>a number</li>
     <li>NaN if conversion is impossible</li>
    </ul>
   </td>
  </tr>
  <tr>
   <td><code>autocapitalize</code> {{experimental_inline}}</td>
   <td><code><em>string:</em></code> <strong>定义</strong> the capitalization behavior for user input. Valid values are <code>none</code>, <code>off</code>, <code>characters</code>, <code>words</code>, or <code>sentences</code>.</td>
  </tr>
 </tbody>
</table>

<dl>
 <dt>{{domxref("HTMLInputElement.align")}} {{obsolete_inline}}</dt>
 <dd><code><em>string:</em></code> <strong>represents</strong> the alignment of the element. <em>Use CSS instead.</em></dd>
 <dt>{{domxref("HTMLInputElement.useMap")}} {{ obsolete_inline }}</dt>
 <dd><code><em>string:</em></code> <strong>represents</strong> a client-side image map.</dd>
</dl>

<h2 id="方法">方法</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <td><code>focus()</code></td>
   <td>Focus on the input element; keystrokes will subsequently go to this element.</td>
  </tr>
  <tr>
   <td><code>blur()</code></td>
   <td>Removes focus from input; keystrokes will subsequently go nowhere.</td>
  </tr>
  <tr>
   <td><code><a href="https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/select">select()</a></code></td>
   <td>Selects the input text in the element, and focuses it so the user can subsequently replace the whole entry.</td>
  </tr>
  <tr>
   <td><code><a href="https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/click">click()</a></code></td>
   <td>Simulates a click on the element.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/API/HTMLInputElement/setSelectionRange">setSelectionRange()</a></code></td>
   <td>Selects a range of text in the element (but does not focus it). The optional selectionDirection parameter may be "forward" or "backward" to establish the direction in which selection was set, or "none" if the direction is unknown or not relevant. The default is "none". Specifying a selectionDirection parameter sets the value of the selectionDirection property.</td>
  </tr>
  <tr>
   <td><code>setRangeText()</code></td>
   <td>
    <dl>
     <dd>
     <p>Replaces a range of text with the new text. If the <var>start</var> and <var>end</var> arguments are not provided, the range is assumed to be the selection.The final argument determines how the selection should be set after the text has been replaced. The possible values are:</p>

     <dl>
      <dt>"<code>select</code>"</dt>
      <dd>Selects the newly inserted text.</dd>
      <dt>"<code>start</code>"</dt>
      <dd>Moves the selection to just before the inserted text.</dd>
      <dt>"<code>end</code>"</dt>
      <dd>Moves the selection to just after the selected text.</dd>
      <dt>"<code>preserve</code>"</dt>
      <dd>Attempts to preserve the selection. This is the default.</dd>
     </dl>
     </dd>
    </dl>
   </td>
  </tr>
  <tr>
   <td><code>setCustomValidity()</code></td>
   <td>Sets a custom validity message for the element. If this message is not the empty string, then the element is suffering from a custom validity error, and does not validate.</td>
  </tr>
  <tr>
   <td><code>checkValidity()</code></td>
   <td>Returns a {{jsxref("Boolean")}} that is <code>false</code> if the element is a candidate for constraint validation, and it does not satisfy its constraints. In this case, it also fires an {{event("invalid")}} event at the element. It returns <code>true</code> if the element is not a candidate for constraint validation, or if it satisfies its constraints.</td>
  </tr>
 </tbody>
</table>

<dl>
 <dt>{{domxref("HTMLInputElement.stepDown()")}}</dt>
 <dd>Decrements the {{htmlattrxref("value","input")}} by ({{htmlattrxref("step","input")}} * n), where n defaults to 1 if not specified. Throws an INVALID_STATE_ERR exception:
 <ul>
  <li>if the method is not applicable to for the current {{htmlattrxref("type","input")}} value,</li>
  <li>if the element has no {{htmlattrxref("step","input")}} value,</li>
  <li>if the {{htmlattrxref("value","input")}} cannot be converted to a number,</li>
  <li>if the resulting value is above the {{htmlattrxref("max","input")}} or below the {{htmlattrxref("min","input")}}</li>
 </ul>
 </dd>
 <dt>{{domxref("HTMLInputElement.stepUp()")}}</dt>
 <dd>Increments the {{htmlattrxref("value","input")}} by ({{htmlattrxref("step","input")}} * n), where n defaults to 1 if not specified. Throws an INVALID_STATE_ERR exception:
 <ul>
  <li>if the method is not applicable to for the current {{htmlattrxref("type","input")}} value.,</li>
  <li>if the element has no {{htmlattrxref("step","input")}} value,</li>
  <li>if the {{htmlattrxref("value","input")}} cannot be converted to a number,</li>
  <li>if the resulting value is above the {{htmlattrxref("max","input")}} or below the {{htmlattrxref("min","input")}}.</li>
 </ul>
 </dd>
 <dt>{{domxref("HTMLInputElement.mozSetFileArray()")}}{{non-standard_inline}}</dt>
 <dd>Sets the files selected on the input to the given array of {{domxref("File")}} objects.  This is an alternative to <code>mozSetFileNameArray()</code> which can be used in frame scripts: a chrome script can <a href="/en-US/docs/Extensions/Using_the_DOM_File_API_in_chrome_code">open files as File objects</a> and send them via <a href="/en-US/Firefox/Multiprocess_Firefox/The_message_manager">message manager</a>.</dd>
 <dt>{{domxref("HTMLInputElement.mozGetFileNameArray()")}}{{non-standard_inline}}</dt>
 <dd>Returns an array of all the file names from the input.</dd>
 <dt>{{domxref("HTMLInputElement.mozSetFileNameArray()")}}{{non-standard_inline}}</dt>
 <dd>Sets the filenames for the files selected on the input.  Not for use in <a href="/en-US/Firefox/Multiprocess_Firefox/Limitations_of_frame_scripts">frame scripts</a>, because it accesses the file system.</dd>
 <dd>
 <ul>
 </ul>
 </dd>
</dl>

<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', "forms.html#the-input-element", "HTMLInputElement")}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>No change from {{SpecName("HTML5 W3C")}}</td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C', "forms.html#the-input-element", "HTMLInputElement")}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td>Technically, the  tabindex and accesskey properties, as well as the blur(), click(), and focus() methods, are now defined on {{domxref("HTMLElement")}}.<br>
    The following properties are now obsolete: align and useMap.<br>
    The following properties have been added: autocomplete, autofocus, dirName, files, formAction, formEncType, formMethod, formNoValidate, formTarget, height, indeterminate, labels, list, max, min, multiple, pattern, placeholder, required, selectionDirection, selectionEnd, selectionStart, step, validationMessage, validity, valueAsDate, valueAsNumber, width, and willValidate.<br>
    The following methods have been added: checkValidity(), setCustomValidity(), setSelectionRange(), stepUp(), and stepDown().</td>
  </tr>
  <tr>
   <td>{{SpecName('DOM2 HTML', 'html.html#ID-6043025', 'HTMLInputElement')}}</td>
   <td>{{Spec2('DOM2 HTML')}}</td>
   <td>The size property is now an unsigned long. The type property must be entirely given in lowercase characters.</td>
  </tr>
  <tr>
   <td>{{SpecName('DOM1', 'level-one-html.html#ID-6043025', 'HTMLInputElement')}}</td>
   <td>{{Spec2('DOM1')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

{{Compat("api.HTMLInputElement")}}

<h2 id="参见">参见</h2>

<ul>
 <li>HTML element implementing this interface: {{ HTMLElement("input") }}.</li>
</ul>