jquery input checked 使用
Jquery 判断复选框是否选中:
$(‘#xxx’).is(‘:checked’);t //rue/false
给复选框赋值:
$(“#xxx″).prop(“checked”,true);
0
赞