最新的Web開發教程
 

HTML <input> multiple Attribute

<HTML <input>標籤

接受多個值的文件上傳領域:

<form action="demo_form.asp">
  Select images: <input type="file" name="img" multiple>
  <input type="submit">
</form>
試一試»

定義和用法

multiple屬性是一個布爾屬性。

如果存在,它指定允許用戶在輸入多個值<input>元素。

注: multiple屬性適用於以下輸入類型:電子郵件和文件。

提示:對於<input type="file"> :選擇多個文件,按住Ctrl或同時選擇SHIFT鍵。

提示:對於<input type="email"> :用逗號分隔每個電子郵件,就像[email protected], [email protected], [email protected]在電子郵件領域。


瀏覽器支持

在表中的數字指定完全支持屬性所述第一瀏覽器的版本。

屬性
multiple 6 10.0 3.6 5 11.0

HTML 4.01和HTML5之間的差異

multiple屬性,HTML5是新的。


HTML和XHTML之間的差異

在XHTML中,最小的屬性是被禁止的,而且multiple屬性必須被定義為<input multiple="multiple" />


句法

<input multiple>

<HTML <input>標籤