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


HTML Input Month disabled用法及代码示例


HTML DOM中的DOM Input Month禁用属性用于返回一个布尔值,该布尔值表示应禁用或不禁用Month字段。默认情况下,禁用的元素以灰色显示,并且不可用和un-clickable。

用法:

  • 它返回禁用的属性。
    monthObject.disabled
  • 用于设置禁用的属性。
    monthObject.disabled = true

属性值:


  • true:它指定禁用“月”字段。
  • false:它指定不禁用“月”字段。

返回值:它会返回一个布尔值,即如果禁用“月”字段,则返回true;如果未禁用“月”字段,则返回false。

示例1:本示例返回Disabled属性的值。

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

输出
在单击按钮之前:

单击按钮后:

示例2:本示例说明了如何设置或更改Disabled属性。

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

输出:
在单击按钮之前:

单击按钮后:

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

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

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



相关用法


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