DIV CSS 佈局教程網

jquery遍歷checkbox介紹
編輯:JQuery特效代碼     

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)

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved