qq_王宇_0
2016-10-16 15:40
<form method="post" action="save.php">
<label>1.你喜欢的运动是:</label><br/>
<label for="run">跑步</label>
<input type="radio" name "1" value="a" id="run"/>
<label for="jump">跳远</label>
<input type="radio" name="1" value="b" id="jump"/><br/>
<label>2.你喜欢的音乐类型是:</label><br/>
<label for="liuxing">流行</label>
<input type="radio" name="2" value="d" id="liuxing"/>
<label for="shanggan">伤感</label>
<input type="radio" name="2" value="c" id="shanggan"/><br/>
<input type="submit" value="提交" name="submitBtn"/>
<input type="reset" value="重置" name="resetBtn"/>
</form>
<form method="post" action="save.php">
<label>1.你喜欢的运动是:</label><br/>
<label for="run">跑步</label>
<input type="radio" name= "1" value="a" id="run"/>
<label for="jump">跳远</label>
<input type="radio" name="1" value="b" id="jump"/><br/>
<label>2.你喜欢的音乐类型是:</label><br/>
<label for="liuxing">流行</label>
<input type="radio" name="2" value="d" id="liuxing"/>
<label for="shanggan">伤感</label>
<input type="radio" name="2" value="c" id="shanggan"/><br/>
<input type="submit" value="提交" name="submitBtn"/>
<input type="reset" value="重置" name="resetBtn"/>
</form>
第四行的name没有打"="看到没
<label for="run">跑步</label>
<input type="radio" name "1" value="a" id="run"/>
这里少了一个(=)号
初识HTML(5)+CSS(3)-升级版
1225297 学习 · 18230 问题
相似问题