//全选
$("#btn1").click(function(){
$("input[name='FORM_COLUMNS']").prop("checked",true);
});
//取消全选
$("#btn2").click(function(){
$("input[name='FORM_COLUMNS']").prop("checked",false);
});
//反选
$("#btn3").click(function(){
$("input[name='FORM_COLUMNS']").each(function(){
if($(this).is(":checked"))
{
$(this).prop("checked",false);
}
else
{
$(this).prop("checked",true);
}
})
});
<input type="button" id="btn1" value="全选">
<input type="button" id="btn2" value="取消全选">
<input type="button" id="btn3" value="反选">