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


HTML input radio用法及代碼示例


HTML <input type =“ radio”>用於定義單選按鈕。單選按鈕用於讓用戶從預定義選項列表中準確選擇一個選項。通過使用“input”元素(類型屬性值為“radio”)來創建單選按鈕輸入控件。

用法:

<input type="radio"> 

例:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title> 
        HTML input type radio 
    </title> 
      
    <style>  
        body {  
            text-align:center;  
        }  
        h1 {  
            color:green;  
        }  
    </style>  
</head>  
  
<body>  
    <h1>  
        GeeksforGeeks  
    </h1>  
  
    <h2>  
        HTML <Input type= "radio">  
    </h2>  
      
    Radio Button:  
    <input type="radio" checked=true id="radioID"
        value="Geeks_radio" name="Geek_radio">  
</body>  
  
</html>                    

輸出:

支持的瀏覽器:<input type =“ radio”>支持的瀏覽器如下:

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

相關用法


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