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


HTML Input Month name用法及代码示例


HTML DOM中的Input Month name属性用于设置或返回输入Month字段的name属性的值。每个输入月字段都需要name属性。如果未在输入字段中指定name属性,则将根本不发送该字段的数据。

用法:

  • 它返回输入月名称属性。
    monthObject.name
  • 它用于设置“输入月份”名称属性。
    monthObject.name = name

属性值:它包含单个属性值,即用于指定“月”字段名称的名称。


返回值:它返回一个字符串值,代表输入的Month字段的名称。

示例1:本示例返回输入月名称属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Month name Property 
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>DOM Input Month name 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 return the name  Property-->
    <script>  
        function myGeeks() {  
            var gfg = document.getElementById("month_id").name ; 
            document.getElementById("GFG").innerHTML = gfg; 
        }  
    </script>  
</body>  
  
</html>                     

输出
在单击按钮之前:

单击按钮后:

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

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Month name Property 
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>DOM Input Month name 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 name Property-->
    <script>  
        function myGeeks() {  
            var gfg = document.getElementById("month_id"); 
            gfg.name = "geeks2";     
            document.getElementById("GFG").innerHTML =  
                        "The name of field is changed to " + gfg.name; 
        }  
    </script>  
</body>  
  
</html>                    

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:DOM输入月份名称属性支持的浏览器如下:

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

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



相关用法


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