慕粉13650631418
2017-01-25 00:00
<HTML>
<head><title>兴趣调查表</title></head>
<body>
<from method="post" action="save.php">
<label for="username">姓名:</label>
<input type="text" name="" value="" id="username"/>
<br>
<label>性别:</label>
<select>
<option value="男" selected="selected">男</option>
<option value="女">女</option>
</select>
<br/>
<label>年龄:</label>
<input type="radio" name="" value="12-16"/>12-16岁
<input type="radio" name="" value="17-21"/>17-21岁
<input type="radio" name="" value="22-26"/>22-26岁
<br/>
<label>兴趣:</label>
<input type="radio" name="" value="篮球"/>篮球
<input type="radio" name="" value="跑步"/>跑步
<input type="radio" name="" value="游泳"/>游泳
<input type="radio" name="" value="看书"/>看书
<label for="qita">其他</label>
<input type="text" name="" value="" id="qita"/>
<br/>
平时运动周期:
<input type="radio" name="" value="每天"/>每天
<input type="radio" name="" value="1-2天"/>1-2天
<input type="radio" name="" value="3-4天"/>3-4天
<input type="radio" name="" value="5-6天"/>5-6天
<br/>
<input type="reset" value="重置"/>
<input type="submit" value="提交"/>
</from>
</body>
</HTML>
如果想要单选,则标签的name属性必须相同:
<label>年龄:</label>
<input type="radio" name="age" value="12-16"/>12-16岁
<input type="radio" name="age" value="17-21"/>17-21岁
<input type="radio" name="age" value="22-26"/>22-26岁
form写错啦 不是from
你的代码里单选的部分name的值应该设置为相同的值,单选变多选的话input type="checkbox";重置没有反应的原因是你的代码里 <from method="post" action="save.php">和</from>的标签对写错了,不是from而是form
使用复选框的语法是:<input type="checkbox" value="" name=""/>
至于重置没反应应该是某些东西没有加上去,至于是什么我也不清楚
初识HTML(5)+CSS(3)-升级版
1225297 学习 · 18230 问题
相似问题