jquery radio/checkbox change事件不能触发的问题
我想让radio来控制当前我选择的是机动车还是特种车,如下所示:
<html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script> </head> <body> <input type="radio" id="insuranceType" name="insuranceType" value="0"/>机动车 <input type="radio" id="insuranceType" name="insuranceType" value="1"/>特种车 <script type="text/javascript"> $(document).ready(function () { $("#insuranceType").change(function () { var insuranceTypeVar = $("input[name='insuranceType']:checked").val(); alert(insuranceTypeVar); }); }); </script> </body> </html>
可结果今我很困惑,只有前一个radio选择时才触发change事件,后才发现因为我是使用的 id 作为筛选器!重复id只能选中第一个!
于是加上一个div,如下所示,一切OK
<html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script> </head> <body> <div id="insuranceTypeSelect"> <input type="radio" name="insuranceType" value="0"/>机动车 <input type="radio" name="insuranceType" value="1"/>特种车 </div> <script type="text/javascript"> $(document).ready(function () { $("#insuranceTypeSelect").change(function () { var insuranceTypeVar = $("input[name='insuranceType']:checked").val(); alert(insuranceTypeVar); }); }); </script> </body> </html>
以上还可以优化下,不仅是单击radio圆圈的时候可以选中,单击后边的机动车(特种车)文字的时候,也可以实现radio的选中并触发change事件,如下所示:
<html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script> </head> <body> <div id="insuranceTypeSelect"> <input type="radio" id="insuranceType1" name="insuranceType" value="0"/><label for="insuranceType1">机动车</label> <input type="radio" id="insuranceType2" name="insuranceType" value="1"/><label for="insuranceType2">特种车</label> </div> <script type="text/javascript"> $(document).ready(function () { $("#insuranceTypeSelect").change(function () { var insuranceTypeVar = $("input[name='insuranceType']:checked").val(); alert(insuranceTypeVar); }); }); </script> </body> </html>
相关推荐
zhanghaibing00 2020-06-28
MaureenChen 2020-05-25
风飞飘扬 2014-06-24
lbPro0 2019-11-03
donghongbz 2019-10-19
85931235 2012-01-11
yFifhting 2017-06-08
NARUTOLUOLUO 2019-07-01
人心 2019-06-30
攻城师 2019-06-29
HotStrong 2017-06-08
zfjdoreen 2016-04-13
89367741 2016-03-30
shiyiboke 2016-03-29
SinhaengHhjian 2016-01-25
89453862 2015-10-10