根据图像,我想检查和取消检查单选按钮,因为所有存在和所有缺席。我写了一些代码,但它只工作一次。
$(document).on('click', '#btn_all_absent', function(e){
$("input:radio[class^=present]").each(function(i) {
$(this).attr('checked',false);
});
$("input:radio[class^=absent]").each(function(i) {
$(this).attr('checked',true);
});
});
$(document).on('click', '#btn_all_present', function(e){
$("input:radio[class^=absent]").each(function(i) {
$(this).attr('checked',false);
});
$("input:radio[class^=present]").each(function(i) {
$(this).attr('checked',true);
});
});
请指出我哪里错了.
2条答案
按热度按时间niknxzdl1#
您的代码在这方面运行良好。
shstlldc2#
对我来说就是这样。