Jquery禁用所有checkbox

$("input[type=checkbox]").each(function(){
  $(this).attr("disabled",false);
});

原文地址:https://www.cnblogs.com/413xiaol/p/6551120.html