HTML单选框是一种常见的表单元素,可以让用户从几个选项中选择一个。这里我们将使用HTML单选框来编写一个性别选择的表单。
<form> <p>请选择您的性别:</p> <p><input type="radio" name="gender" value="male" id="male"><label for="male">男性</label></p> <p><input type="radio" name="gender" value="female" id="female"><label for="female">女性</label></p> </form>
以上代码通过<input>元素的type属性设置单选框,name属性指定单选框所属的表单元素,value属性定义每个单选框的值(用于提交表单的值),id属性用于连接<label>元素。