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


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


HTML必需屬性是一個布爾屬性,用於指定在提交表單之前必須填寫輸入元素。此屬性可與其他類型的輸入配合使用,例如單選,複選框,數字,文本等。

用法:

<input required> 

示例1:此示例說明了在輸入元素中必需屬性的用法。


<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      required Attribute 
  </title> 
    <style> 
        h1, 
        h2 { 
            color:green; 
            font-style:italic; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksForGeeks</h1> 
    <h2> 
      HTML input required attribute  
  </h2> 
    <form action=""> 
        Username:
        <input type="text"
               name="usrname"
               required> 
        <br> Password:
        <input type="password"
               name="password"> 
        <br> 
        <input type="submit"> 
    </form> 
</body> 
  
</html>

輸出:

示例2:此示例說明了在輸入元素中必需屬性的用法。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      required Attribute 
  </title> 
    <style> 
        h1, 
        h2 { 
            color:green; 
            font-style:italic; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksForGeeks</h1> 
    <h2> 
      HTML input required attribute  
  </h2> 
    <form action=""> 
        Required:
        <input type="radio"
               name="radiocheck"
               required> 
        <br> 
        <input type="submit"> 
    </form> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML輸入必需屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


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