當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML <input> multiple屬性用法及代碼示例


HTML <input>多重屬性是布爾屬性。它指定允許用戶選擇一個元素中存在的多個值。多個屬性可用於許多輸入字段,例如電子郵件,文件等。

用法:

<input multiple> 

例:


<!DOCTYPE html> 
<html> 
  
<body> 
    <center> 
        <h1 style="color:green;font-style:italic;"> 
          GeeksForGeeks 
      </h1> 
        <h2 style="color:green;font-style:italic;"> 
          HTML input multiple Attribute 
      </h2> 
        <form action=" "> 
            Select images:
            <input type="file" name="img" multiple> 
            <input type="submit"> 
        </form> 
  </center> 
  
</body> 
  
</html>

輸出:

支持的瀏覽器:

  • 穀歌瀏覽器6.0
  • Firefox 3.6
  • 邊10.0
  • Opera 11.0
  • 蘋果Safari 5.0


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <input> multiple Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。