您好,登錄后才能下訂單哦!
廢話不多說了,直接給大家貼代碼了,具體代碼如下所示:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>jQuery實現CheckBox全選、全不選</title> <script src="http://code.jquery.com/jquery-2.2.3.min.js" type="text/javascript"></script> <script type="text/javascript"> $(function() { $(':checkbox').click(function(evt){ // 阻止冒泡 evt.stopPropagation(); }); //判斷是否全選 $("#checkAll").click(function() { $('input[name="subBox"]').prop("checked",this.checked); }); var $subBox = $("input[name='subBox']"); $subBox.click(function(){ //alert($subBox.length); //alert($("input['subBox']:checked").length); $("#checkAll").prop("checked",$subBox.length == $("input[name='subBox']:checked").length ? true : false); }); //用于檢查是否選中,選中的話提示值 $("#butt").click(function (){ //$('input[name="subBox"]').prop("checked",this.checked); var arrChk=$("input[name='subBox']:checked"); $(arrChk).each(function(){ //each() 遍歷函數 alert(this.value); }); if(arrChk.length==0){ alert("沒有選中") } }); }); </script> </head> <body> <div> <input id="checkAll" type="checkbox" />全選 <input name="subBox" type="checkbox" value="1" />選項1 <input name="subBox" type="checkbox" value="2"/>選項2 <input name="subBox" type="checkbox" value="3"/>選項3 <input name="subBox" type="checkbox" value="4"/>選項4 <input type="button" id="butt" value="檢查是否選中"/> </div> </body> </html>
jQuery版本問題
原本操作屬性用的是 $("XXX").attr("attrName");
而jQuery的版本用的是2.1.1,這就是存在一個兼容性和穩定性問題。
jQuery API明確說明,1.6+的jQuery要用prop,尤其是checkBox的checked的屬性的判斷,
即 使用代碼如下:
$("input[name='checkbox']").prop("checked"); $("input[name='checkbox']").prop("disabled", false); $("input[name='checkbox']").prop("checked", true);
于是乎將attr改為prop,問題得解。
相關閱讀:
jQuery操作復選框(CheckBox)的取值賦值實現代碼
jQuery對checkbox 復選框的全選全不選反選的操作
Jquery EasyUI實現treegrid上顯示checkbox并取選定值的方法
以上所述是小編給大家介紹的jQuery實現CheckBox全選、全不選功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。