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)