首页 > 代码库 > 点击单选button后的文字就可以选定相应单选button
点击单选button后的文字就可以选定相应单选button
比方我想点击单选button后的文字就选中对应的button:
<input type="radio" name="sex" value="http://www.mamicode.com/1" id="men" /><label >男 </label> <input type="radio" name="sex" value="http://www.mamicode.com/0" id="women" /><label >女 <label>我想点击“男”就选中“男”相应的单选button。仅仅须要在label标签加入for属性。for属性的值为radio的id值。
例如以下代码能够实现点击button后的文字选中button:
<input type="radio" name="sex" value="http://www.mamicode.com/1" id="men" /><label for="men" >男 </label> <input type="radio" name="sex" value="http://www.mamicode.com/0" id="women" /><label for="women">女 <label>
点击单选button后的文字就可以选定相应单选button
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。