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 type="radio" name="gentle" checked="checked" value="male"><br/>

女性:<input type="radio" name="gentle" value="female">


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

原文地址: http://outofmemory.cn/zaji/8323132.html

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

发表评论

登录后才能评论

评论列表(0条)

保存