当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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”>。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。