.<input type="checkbox" οnchange='allstu(this);return false;' />
2.<input type="checkbox" οnchange='allstuent($(this));return false;' value='1' />
结果 获得
function allstu(_this){
console.log(_this.checked);
console.log(_this);
}
function allstuent(_this){
console.log(_this.val());
console.log(_this);
}
eq: function allstu(_this){
if(_this.checked){
$("input[name='all']").prop("checked",true);
}else{
$("input[name='all']").prop("checked",false);
}
}