1:设置input的选中属性:$('.passenger').find('.is-need-tel').prop('checked',true);
2:获取input是否选中:
$('.passenger').find('.is-need-tel').click(function(){ console.log($(this).prop('checked')); });
本文共 251 字,大约阅读时间需要 1 分钟。
1:设置input的选中属性:$('.passenger').find('.is-need-tel').prop('checked',true);
2:获取input是否选中:
$('.passenger').find('.is-need-tel').click(function(){ console.log($(this).prop('checked')); });
转载于:https://www.cnblogs.com/xiaozhumaopao/p/6288937.html