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


HTML DOM Input Radio用法及代碼示例


Input Radio對象用於訪問或創建type =“ radio”的輸入元素。

用法:

  • 要訪問輸入元素,類型=“ radio”。
    document.getElementById("ID");
  • 要創建輸入元素,請輸入type =“ radio”。
    var GFG = document.createElement("INPUT");
    x.setAttribute("type", "radio");
    

屬性值:

描述
autofocus 它指出在頁麵加載時單選按鈕是否應該自動獲得焦點。
checked 它返回單選按鈕的檢查狀態。
defaultChecked 它返回checked屬性的默認值。
defaultValue 它返回單選按鈕的默認值。
disabled 返回是否禁用單選按鈕。
form 它返回對包含單選按鈕的表單的引用。
name 它返回單選按鈕的name屬性的值。
required 它返回是否在提交表單之前必須選中單選按鈕。
type 它返回單選按鈕是哪種類型的表單元素。
value 它返回單選按鈕的value屬性的值。

示例1:訪問輸入對象類型=“ radio”

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
  
    <h2>HTML DOM Input Radio Object</h2> 
  
    <h3>An example access a Radio Button</h3>  
  Radio Button:
    <input type="radio" 
           checked=true
           id="radioID"> 
  
    <p>Click the button to uncheck it.</p> 
    <button onclick="GFG()"> 
      Click! 
  </button> 
    
    <script> 
        function GFG() { 
            
            // Accessing input element 
            // type="radio" 
            var x =  
            document.getElementById("radioID"); 
            x.checked = false; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:



點擊之前:

單擊後:

示例-2:創建輸入元素type =“ radio”。

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
  
    <h2>HTML DOM Input Radio Object 
  </h2> 
    <p>Click to create a Radio Button. 
  </p> 
  
    <button onclick="myFunction()"> 
      Create 
  </button> 
    <br> 
    <script> 
        function myFunction() { 
            
            // Creating input element 
            // type="radio" 
            var x =  
            document.createElement("INPUT"); 
            x.setAttribute("type", "radio"); 
            document.body.appendChild(x); 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

點擊之前:

單擊後:

支持的瀏覽器:

  • 穀歌瀏覽器
  • 火狐瀏覽器
  • Edge
  • Safari
  • Opera

相關用法


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