xiaotao123

$(function() {
 $(\':checkbox[name=复选框name值]\').each(function() {
  $(this).click(function() {
   if ($(this).attr(\'checked\')) {
    $(\':checkbox[name=复选框name值]\').removeAttr(\'checked\');
    $(this).attr(\'checked\', \'checked\');
   }
  });
 });
});

 

分类:

技术点:

相关文章: