checkbox 全選\全部取消
$("#ChkAll").click(function(){
$("#divContent input[type='checkbox']").attr("checked",$(this).attr("checked"));
});
獲取選中的checkbox的value值:
var arrChk=$("input[name='chk_list'][checked]");
$(arrChk).each(function(){
window.alert(this.value);
});
});
$("#checkbox_id").attr("checked"); //獲取一個CheckBox的狀態(有沒有被選中,返回true/false)
$("#checkbox_id").attr("checked",true); //設置一個CheckBox的狀態為選中(checked=true)