实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<form action="">
6
<input type="radio" name="sex" value="male">Male<br>
7
<input type="radio" name="sex" value="female">Female
8
</form>
9
10
<p><b>Note:</b> When a user clicks on a radio-button, it becomes checked, and all other radio-buttons with equal name become unchecked.</p>
11
12
</body>
13
</html>
14