1.多个input type=checkbox框绑定选中事件
$(function(){
var checkbox = $("input[type='checkbox']");
checkbox.each(function(i) {
$(this).click(function(){
if(this.checked==true){
alert("选中");
}else {
alert("取消选中");
}
});
});
})
2.checkbox复选框,如何让其勾选时触发一个事件,取消勾选时不触发
<input type="checkbox" onclick="checked(this)" />
function checked(checkbox){
if ( checkbox.checked == true){
alert("选中");
}else{
alert("取消选中");
}
}