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


HTML Input Button disabled用法及代碼示例


HTML DOM中的DOM輸入按鈕禁用屬性用於設置或返回是否應禁用“輸入按鈕”字段。默認情況下,禁用的元素以灰色顯示,並且不可用和un-clickable。

用法:

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

屬性值:


  • true:它指定按鈕字段被禁用。
  • false:它指定按鈕字段未禁用。

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

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

<!DOCTYPE html>  
<html>  
  
<head>  
    <style>  
        h1 {  
            color:green;  
        }  
    </style>  
</head>  
  
<body style="text-align:center;">  
    <h1>GeeksForGeeks</h1>  
    <h2> DOM Input Button disabled Property </h2>  
        <form id="myGeeks"> 
  
    <!-- Assigning button id -->
    <input type="button" id="GFG" onclick="myGeeks()" 
      name="Geek_button" value="Submit" >  
                    </form> 
    <p id="sudo" style="color:green;font-size:25px;"></p>  
  
    <script>  
        function myGeeks() {  
              
            // accessing 'button' id.  
            var g = document.getElementById("GFG").disabled;  
            document.getElementById("sudo").innerHTML = g;  
        }  
    </script>  
  
</body>  
  
</html> 

輸出:
在單擊按鈕之前:

單擊按鈕後:

示例2:本示例說明了如何設置禁用的屬性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <style>  
        h1 {  
            color:green;  
        }  
    </style>  
</head>  
  
<body style="text-align:center;">  
    <h1>GeeksForGeeks</h1>  
    <h2> DOM Input Button disabled Property </h2>  
        <form id="myGeeks"> 
    <!-- Assigning button id -->
    <input type="button" id="GFG" onclick="myGeeks()" 
       name="Geek_button" value="Submit" >  
                    </form> 
    <p id="sudo" style="color:green;font-size:25px;"></p>  
  
    <script>  
        function myGeeks() {  
              
            // accessing 'button' id.  
            var g = document.getElementById("GFG").disabled = "true";  
            document.getElementById("sudo").innerHTML = g;  
        }  
    </script>  
  
</body>  
  
</html> 

輸出:

在單擊按鈕之前:

單擊按鈕後:

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

  • 穀歌瀏覽器
  • Internet Explorer 10.0以上
  • Firefox
  • Opera
  • Safari


相關用法


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