当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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”>。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。