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


HTML Input Reset disabled用法及代碼示例


HTML DOM中的“禁用輸入重置”屬性用於設置或返回一個布爾值,該布爾值表示應禁用或不禁用重置按鈕字段。默認情況下,禁用的元素以灰色顯示,並且不可用和不可單擊。

用法:

  • 它返回禁用的屬性。
    resetObject.disabled
  • 用於設置禁用的屬性。
    resetObject.disabled = true|false

屬性值:


  • true:它指定重置按鈕已禁用。
  • false:它指定重置按鈕未禁用。

返回值:它會返回一個布爾值,即如果禁用了重置按鈕字段,則返回true;如果未禁用重置字段,則返回false。

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

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input reset disabled property  
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1 style="color:green;">  
        GeeksForGeeks  
    </h1>  
  
    <h2>DOM Input reset disabled Property</h2>  
      
    <input type="reset" id="GeekReset" name="geeks"
            value="Reset form" disabled>  
      
    <p> 
        Click on below button to return the Property 
    </p>      
  
    <button onclick="myGeeks()">  
        Click Here  
    </button>  
      
    <p id="Geek_p" style="font-size:30px; color:green;"></p>  
      
    <script>  
        function myGeeks() {  
              
            // Access input element with type = "reset"  
            var x = document.getElementById("GeekReset").disabled;  
            document.getElementById("Geek_p").innerHTML = x;  
        }  
    </script>  
</body>  
  
</html>                    

輸出:
單擊按鈕之前:

單擊按鈕後:

範例2:本示例說明了如何設置“禁用輸入重置”屬性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input reset disabled property  
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1 style="color:green;">  
        GeeksForGeeks  
    </h1>  
  
    <h2>DOM Input reset disabled Property</h2>  
      
    <input type="reset" id="GeekReset" name="geeks"
            value="Reset form" disabled>  
      
    <p> 
        Click on below button to set the Property 
    </p>      
  
    <button onclick="myGeeks()">  
        Click Here  
    </button>  
      
    <p id="Geek_p" style="font-size:30px; color:green;"></p>  
      
    <!-- Script to use Input Reset disabled property -->
    <script>  
        function myGeeks() {  
  
            var x = document.getElementById("GeekReset").disabled 
                    = false;  
                      
            document.getElementById("Geek_p").innerHTML = x;  
        }  
    </script>  
</body>  
  
</html>                    

輸出:
單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:DOM輸入重置禁用屬性支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


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