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


HTML input month用法及代碼示例


HTML <input type =” month”>用於指定月份和年份字段的控件。該值的格式必須為“YYYY-MM”。

用法:

<input type="month"> 

例:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML input type month  
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>HTML <Input type ="month"></h2>  
      
    <form id="myGeeks">  
        <input type="month" id="month_id"
                name="geeks" >  
    </form>  
</body>  
  
</html>                    

輸出:

支持的瀏覽器:<input type =“ month”>支持的瀏覽器如下:

  • 穀歌瀏覽器25.0
  • Internet Explorer 12.0
  • Opera 10.1

相關用法


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