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


HTML Input Month value用法及代码示例


Input Month值属性用于设置或返回Month字段的value属性的值。输入月份值属性可用于为“星期”字段指定月份和年份。

用法:

  • 要返回value属性:
    monthObject.value
  • 设置value属性:
    monthObject.value = YYYY-MM

属性值:


  • YYYY-MM:该值表示年份和月份。此处YYYY是年份,即2019,而MM是月份,即03。

返回值:它返回一个表示月份字段值的字符串。

以下示例程序旨在说明“月值”属性:
示例1:本示例返回Input Month值属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Month value Property 
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>DOM Input Month value Property</h2>  
            <form id="myGeeks"> 
    <input type="month" id="month_id" name="geeks" value="2019-03">  
                 </form> 
                 <br> 
    <button onclick="myGeeks()">Click Here!</button>  
      
    <p id="GFG" style="font-size:20px;"></p>  
      
    <!-- Script to return the value Property-->
    <script>  
        function myGeeks() {  
            var gfg = document.getElementById("month_id").value; 
            document.getElementById("GFG").innerHTML = gfg; 
        }  
    </script>  
</body>  
  
</html>                     

输出
在单击按钮之前:

单击按钮后:

示例2:本示例说明了如何设置属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Month value Property 
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>DOM Input Month value Property</h2>  
            <form id="myGeeks"> 
    <input type="month" id="month_id" name="geeks" >  
                </form> 
                <br> 
    <button onclick="myGeeks()">Click Here!</button>  
      
    <p id="GFG" style="font-size:20px;"></p>  
      
    <!-- Script to set the value Property-->
    <script>  
        function myGeeks() {  
            var gfg = document.getElementById("month_id"); 
            gfg.value = "2019-09"; 
            var g =    gfg.value;         
            document.getElementById("GFG").innerHTML = g; 
        }  
    </script>  
</body>  
  
</html>                    

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM Input Month value属性支持的浏览器:

  • 谷歌浏览器
  • Internet Explorer 10.0以上
  • Firefox
  • Opera
  • Safari

注意:在Firefox中,输入类型=“ month”元素不显示任何日期字段或日历。



相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Month value Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。