📌  相关文章
📜  如何指定必须在 HTML 中提交表单之前填写的输入字段?

📅  最后修改于: 2021-09-01 02:54:43             🧑  作者: Mango

在本文中,我们将指定一个必须在提交表单之前填写的输入字段。 HTML required 属性是一个布尔属性,用于指定必须在提交表单之前填写 input 元素。此属性适用于其他类型的输入,如单选、复选框、数字、文本等。

句法:

示例:此示例说明了在输入字段中使用 required 属性。

HTML


  

    
        How to specify an input field
        must be filled out before
        submitting the form in HTML?
    
  
    

  

    

GeeksforGeeks

    

        How to specify an input field         must be filled
out before         submitting the form in HTML?     

    
        Username:                  

           Password:                  

                
  


输出: