这个为什么第二个能实现单选,第一个不行呢?

来源:6-9 填填性别和兴趣爱好 - 单选框、复选框,让用户选择

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"/>

&nbsp;&nbsp;&nbsp;&nbsp;

<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"/>

&nbsp;&nbsp;&nbsp;&nbsp;

<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>


写回答 关注

2回答

  • 曙东良4161852
    2016-10-16 15:51:58
    已采纳

    <form method="post" action="save.php">
        <label>1.你喜欢的运动是:</label><br/>
        <label for="run">跑步</label>
        <input type="radio" name= "1" value="a" id="run"/>
    &nbsp;&nbsp;&nbsp;&nbsp;
        <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"/>
    &nbsp;&nbsp;&nbsp;&nbsp;
        <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没有打"="看到没

    qq_王宇_...

    非常感谢!

    2016-10-16 16:38:08

    共 1 条回复 >

  • qq_小小羊提米_04162777
    2016-10-16 15:49:14

    <label for="run">跑步</label>

    <input type="radio" name "1" value="a" id="run"/>

    这里少了一个(=)号

初识HTML(5)+CSS(3)-升级版

HTML(5)+CSS(3)基础教程8小时带领大家步步深入学习标签用法和意义

1225297 学习 · 18230 问题

查看课程

相似问题