$(document).on("click","#selall",function(){
$("input:checkbox[name='ditems']").each(function(i){
$(this).prop("checked",true);
})
form.render();
})
//取消选择
$(document).on("click","#canall",function(){
$("input:checkbox[name='ditems']").each(function(i){
$(this).prop("checked",false);
})
form.render();
})
//反选
$(document).on("click","#selother",function(){
$("input:checkbox[name='...