我有一些代码可以在单选按钮列表中列出选项,但是我只能获得单选按钮,但无法获得Value

时间:2019-06-15 06:06:20

标签: html

我的代码是

<form>

        First Nme:<br>
        <input type="text" name="name"><br>
        Age:<br>
        <input type="text" name="age"><br>
        <input type="submit" value="Save" ><br>
        Click Gender:<br>
        <input type="radio" name="male" value="Male"><br>

    </form>

上面的代码仅显示单选按钮图像,但不显示我给出的“ Male”未显示的值,请告知我!

2 个答案:

答案 0 :(得分:0)

尝试:

<form >
  <label for="male">Male</label>
  <input type="radio" name="gender" id="male" value="male"><br>
  <label for="female">Female</label>
  <input type="radio" name="gender" id="female" value="female"><br>
  <label for="other">Other</label>
  <input type="radio" name="gender" id="other" value="other"><br><br>
  <input type="submit" value="Submit">
</form>

请通过链接https://www.w3schools.com/html/default.asp进一步了解html。

谢谢

答案 1 :(得分:0)

input标签仅创建单选按钮。该表单即使没有单选按钮也可以使用,并且在插入数据库时​​将为“ Male”。但为清楚起见,我们需要在单选按钮旁边添加文字,

<input type="radio" name="male" value="Male">Male<br>