html性别按钮如何写

html性别按钮如何写,第1张

input标签type写成radio单选。后面的文字自己添加,男女两个的input都要用相同的name值,因为只能选择一个。

<form action="/example/html/form_action.asp" method="get">

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

  <input type="radio" name="sex" value="female" /> Female<br />

  <input type="submit" value="Submit" />

</form>

<input name="sex" type="radio" value="1" checked />男

<input name="sex" type="radio" value="2" />女

获取更新之前的值:$("input[name='sex']:checked").val()

<select>

<option value="男">男</option>

<option value="女">女</option>

</select>

样式自己加哦~


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11298390.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-15
下一篇 2023-05-15

发表评论

登录后才能评论

评论列表(0条)

保存