這篇文章主要是對jquery遍歷checkbox進行了介紹,需要的朋友可以過來參考下,希望對大家有所幫助
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)