溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jQuery 全選 全不選 事件綁定的實現(xiàn)代碼

發(fā)布時間:2020-09-03 10:52:13 來源:腳本之家 閱讀:148 作者:CodesGeek 欄目:web開發(fā)

廢話不多說了,直接給大家貼代碼了,具體代碼如下所示:

<td width="82%" colspan="3">
<input type="checkbox" id="all">全選&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="checkbox" id="reverse">反選
</td>
<td width="82%" colspan="3">
<s:checkboxlist name="resUuids" list="resList" listKey="uuid" listValue="name"></s:checkboxlist>
</td>
$(function(){
//全選
$("#all").click(function(){
//將下面所有組件全部選中
//$("[name=resUuids]")  是多個組件,整體是個對象數(shù)組
//$("[name=resUuids]").attr("checked","checked");
//先獲取當前組件的狀態(tài)
//$(this).attr("checked")
//將所有組件設(shè)置為對應狀態(tài)
//$("[name=resUuids]").attr("checked",$(this).attr("checked"));
//$(this).attr("checked")獲取的值究竟是什么
//alert($(this).attr("checked"));    //undefined
//$("[name=resUuids]").attr("checked","undefined");
//js語法規(guī)則,除了false,FALSE,"false","FALSE",0五個值之外的所有值,認定為true
//$("[name=resUuids]").attr("checked",false);
var flag = $(this).attr("checked");
$("[name=resUuids]").attr("checked",flag == "checked");
});
//反選
    $("#reverse").click(function(){
      //將所有組件的狀態(tài)切換成原始狀態(tài)的反狀態(tài)
      //$("[name=resUuids]").attr("checked",!($("[name=resUuids]").attr("checked")=="checked"));
      //當選擇器選中的組件是多個時,獲取組件的任何數(shù)據(jù)都是對第一個組件進行操作
      //alert(!($("[name=resUuids]").attr("checked")=="checked"));
      //對每個組件進行迭代,讓其操作狀態(tài)為對應組件的原始狀態(tài)的反狀態(tài)
      $("[name=resUuids]").each(function(){
        //使用each操作實現(xiàn)對每個組件的操作
        var flag = $(this).attr("checked"); 
        $(this).attr("checked", !(flag =="checked"));
      });
      checkSelect();
    });
//綁定組件
    $("[name=resUuids]").click(function(){
      //將全選的狀態(tài)設(shè)置為基于所有組件的綜合狀態(tài)值
      checkSelect();
    });
    function checkSelect(){
      var allFlag = true;
      $("[name=resUuids]").each(function(){
        var flag = $(this).attr("checked") == "checked";
        //&:位運算與   &&:邏輯與
        allFlag = allFlag && flag; 
      });
      $("#all").attr("checked",allFlag);
    }
  });

以上所述是小編給大家介紹的jQuery 全選 全不選 事件綁定的實現(xiàn)代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI