<input type="checkbox">
$("[type=checkbox]").click(function () {
alert($(this).is(":checked"))
})
//jquery获取选中的三种方法
$(this).attr('checked); //看版本1.6+返回:”checked”或”undefined”
$(this).prop('checked'); //16+:true/false
$(this).is(':checked'); //所有版本:true/false
$(this).prop("checked","checked");
//query赋值checked的几种写法:
$(this).attr("checked","checked");
$(this).attr("checked",true);
$(this).prop("checked",true);
$(this).prop({checked:true});
$(this).prop("checked",function(){
return true;//函数返回true或false
});
<input type="checkbox" onclick="checkbox(this)">
function checkbox(obj) {
alert(obj.checked);
}