$(function () {
var allBox = $(":checkbox");
allBox.click(function () {
allBox.removeAttr("checked");
$(this).attr("checked", "checked");
});
});
 
 
$(function(){
$(':checkbox[name=jcxflIds]').each(function(){
$(this).click(function(){
if($(this).attr('checked')){
$(':checkbox[name=jcxflIds]').removeAttr('checked');
$(this).attr('checked','checked');
}
});
});
 
});

相关文章:

  • 2022-12-23
  • 2021-12-05
  • 2021-11-12
  • 2022-12-23
  • 2022-12-23
  • 2021-09-09
  • 2021-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-16
  • 2022-01-21
  • 2022-12-23
  • 2021-12-18
  • 2021-12-18
  • 2022-01-12
相关资源
相似解决方案