问答详情
源自:6-9 填填性别和兴趣爱好 - 单选框、复选框,让用户选择

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


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


提问者:qq_王宇_0 2016-10-16 15:40

个回答

  • 曙东良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_小小羊提米_04162777
    2016-10-16 15:49:14

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

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

    这里少了一个(=)号