关于选项问题
为何习题里面可以同时选择三项,性别里面只能选择一项,这和其中的什么元素有关系呢?
为何习题里面可以同时选择三项,性别里面只能选择一项,这和其中的什么元素有关系呢?
2016-06-05
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>习题</title>
</head>
<body>
<form>
<label>你的性别是什么</label><br/>
<input type="radio" name="sex">男
<input type="radio" name="sex">女<br/>
<label>你最喜欢的运动是什么</label><br/>
<input type="checkbox" value="登山" id="dengshan"><label for="dengshan">登山</label><br/>
<input type="checkbox" value="游泳" id="youyong"><label for="youyong">游泳</label><br/>
<input type="checkbox" value="泡妞" id="paoniu" checked="checked"><label for="paoniu">泡妞</label><br/>
<input type="submit" value="提交">
<label>你觉得这个代码有什么问题</label><br/>
<input type="text" placeholder="can bu ren du">
</form>
</body>
</html>
举报