使用jQuery动态设置单选框的选中效果
一、需要实现的效果
这里使用jQuery来实现。需要实现的效果如下:当下拉条改变时,单选框选中的值随之变化。
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>动态设置单选框的选中</title> <!-- 作者:Harrison 时间:2018-12-05 描述:当下拉条改变时,动态的设置单选框的值 --> </head> <body> <select id="sexSelect" style="width: 10%;"> <option value="1">男</option> <option value="2">女</option> </select> 男:<input type="radio" value="1" name="sex" id="sexRadio1" checked/> 女:<input type="radio" value="2" name="sex" id="sexRadio2"/> </body> <script type="text/javascript" src="js/jquery-1.7.2.min.js" ></script> <script type="text/javascript"> $("#sexSelect").change(function(){ //获取选中的下拉条 var checkedOfSelect = $("#sexSelect").val(); //动态设置单选框的选中 if(checkedOfSelect == 1){ $("#sexRadio1").prop("checked",true); $("#sexRadio2").prop("checked",false); } if(checkedOfSelect == 2){ $("#sexRadio1").prop("checked",false); $("#sexRadio2").prop("checked",true); } }); </script> </html>
二、注意
•当设置单选框的checked属性时,要使用jQuery的prop()方法,不能够使用jQuery的attr()方法,attr()只适合简单html元素设置。
•jQuery的prop()方法,第二个参数为布尔值,不能设置成string类型:
正确:$("#sexRadio1").prop("checked",true);
错误:$("#sexRadio1").prop("checked","true");
总结
相关推荐
89510194 2020-06-27
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
tztzyzyz 2020-07-20
83510998 2020-07-18