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


HTML Input Radio checked用法及代碼示例


HTML DOM中的DOM輸入單選選中屬性用於設置或返回輸入單選按鈕的選中狀態。此屬性用於反映HTML選中的屬性。

用法:

  • 它返回選中的屬性。
    radioObject.checked
  • 它用於設置選中的屬性:
    radioObject.checked = true|false

屬性值:


  • true:它指定選中一個單選按鈕。
  • false:它具有默認值。它指定未選中單選按鈕。

返回值:它返回一個布爾值,表示是否已選中單選按鈕。

示例1:本示例說明了如何返回屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1> 
      GeeksforGeeks 
  </h1> 
  
    <h2> 
      HTML DOM Input Radio Checked Property 
  </h2> 
  
    <form id="myGeeks"> 
        Radio Button:
        <input type="radio" 
               checked=true 
               id="radioID" 
               value="Geeks_radio"
               name="Geek_radio" 
               disabled> 
        <br> 
        <br> 
    </form> 
    <button onclick="GFG()"> 
        Click! 
    </button> 
    <p id="GFG" 
       style="font-size:25px; 
              color:green;"> 
  </p> 
    <script> 
        function GFG() { 
  
            // Accessing input element  
            // type="radio"  
            var x = 
                document.getElementById( 
                  "radioID").defaultChecked; 
            
            document.getElementById( 
              "GFG").innerHTML = x; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
  
    <h2>HTML DOM Input Radio  Checked Property</h2> 
  
    <form id="myGeeks"> 
        Radio Button:
        <input type="radio"
               id="radioID" 
               value="Geeks_radio" 
               name="Geek_radio" 
               checked> 
        <br> 
        <br> 
    </form> 
    <button onclick="GFG()"> 
        check 
    </button> 
    <button onclick="uncheck()"> 
        uncheck 
    </button> 
    <p id="GFG" 
       style="font-size:25px; 
              color:green;"> 
  </p> 
    <script> 
        function GFG() { 
  
            // Accessing input element  
            // type="radio"  
            document.getElementById( 
              "radioID").checked = "true"; 
        } 
  
        function uncheck() { 
            document.getElementById( 
              "radioID").checked = false; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:
單擊“檢查”按鈕之前:

單擊“選中”按鈕後:

單擊取消選中按鈕後:

支持的瀏覽器:下麵列出了DOM輸入Radio選中的屬性支持的瀏覽器:

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


相關用法


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