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


HTML type屬性用法及代碼示例


HTML類型的屬性用於為<button>元素指定按鈕的類型。它也在<input>元素中用於指定要顯示的輸入的類型。對於嵌入元素,例如用於指定Internet媒體類型的鏈接,對象,腳本,源和樣式。

用法:

<element type="value"> 

下麵的示例說明了HTML中type屬性的用法:

例:

<!DOCTYPE html>  
<html>  
    <head>  
        <title>  
            HTML type Attribute  
        </title>  
    </head>  
      
    <body>  
        <h1>GeeksforGeeks</h1>  
          
        <h3>HTML type Attribute</h3>  
          
        <form action="#" method="get">  
            Username:<input type="text" name="uname">  
              
            <br><br>  
              
            Password:<input type="password" name="pwd">  
              
            <br><br>  
              
            <button type="submit" value="submit">  
                Submit  
            </button>  
              
            <button type="reset" value="reset">  
                Reset  
            </button>  
        </form>  
    </body>  
</html>                    

輸出:

支持的瀏覽器:以下列出了HTML type屬性支持的瀏覽器:

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




相關用法


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