点击单选button后的文字就可以选定相应单选button

Posted slgkaifa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了点击单选button后的文字就可以选定相应单选button相关的知识,希望对你有一定的参考价值。

  比方我想点击单选button后的文字就选中对应的button:

<input type="radio" name="sex" value="1" id="men" /><label >男 </label>
<input type="radio" name="sex" value="0" id="women" /><label >女 <label>
我想点击“男”就选中“男”相应的单选button。仅仅须要在label标签加入for属性。for属性的值为radio的id值。

例如以下代码能够实现点击button后的文字选中button:

<input type="radio" name="sex" value="1" id="men" /><label for="men" >男 </label>
<input type="radio" name="sex" value="0" id="women" /><label for="women">女 <label>


以上是关于点击单选button后的文字就可以选定相应单选button的主要内容,如果未能解决你的问题,请参考以下文章

单击提交后如何获取选定的单选按钮以显示特定的隐藏 div?

点击文字也可选中相对应的单选按钮或复选按钮

onSelectStart 处理按钮快速点击选中 文字被选中

点击文字选中单选框或复选框

单选按钮

基于选定的单选按钮在 Tkinter 中启动命令?