点击文字同时选中checkbox radio按钮 label实现
原始的一些方法可能是利用js、jq给文字加一个点击事件click,判断去实现选中按钮
后来,在真正用到的时候试着找更简单的方法,发现label这个真的很好用,很简单,有两种实现方法如下:
1、demo1 将label放在input标签外面,同时使label的for属性值等于input的id属性值
<p><br /> <label for="content_1" style="font-weight:normal"><br /> <input type="radio" name="sex" value="男" id="content_1">男<br /> </label><br /> </p>
<p><br /> <label for="content_2" style="font-weight:normal"><br /> <input type="radio" name="sex" value="女" id="content_2">女<br /> </label><br /> </p><br /><br />2、demo2 将input和label放在同一个标签p中同时lable的for属性的值等于input的id属性值就可以实现点击label同时控制input了
<p><br /> <input type="radio" name="sex" value="男" id="content_1">男
<label for="content_1" style="font-weight:normal"> </label>
</p>
<p>
<input type="radio" name="sex" value="女" id="content_2">女
<label for="content_2" style="font-weight:normal"> </label>
</p><br /><br /><br />注:最重要的一点就是保证lable的for属性的值等于input的id属性值
相关推荐
MaureenChen 2020-05-25
NARUTOLUOLUO 2019-07-01
lbPro0 2019-11-03
donghongbz 2019-10-19
89367741 2016-03-30
SinhaengHhjian 2016-01-25
89453862 2015-10-10
aaalk00 2015-03-31
xiuping0 2014-08-11
ruoyiqing 2014-03-18
mapdigit 2013-12-10
pplxh 2013-12-03
limengmeng00 2013-09-27
健康学习 2013-07-29
Allenyhy 2013-06-13
82483564 2013-04-28
88463368 2013-04-24