• 关于jquery首先全/反选功能和全/全不选功能


    1.全/反选功能

      $("#select_toggle").click(function(){
        $("td :checkbox").each(function(){
          if($(this).attr("checked")==true)
          {
            $(this).attr("checked",false);
          }
          else
          {  
            $(this).attr("checked",true);
          }
        });
      });

    2.全选功能

      $("#select_all").click(function(){
        $("td :checkbox").each(function(){

          $(this).attr("checked",true);
        });
      });

    3.全不选功能

      $("#select_not").click(function(){
        $("td :checkbox").each(function(){

          $(this).attr("checked",false);
        });
      });

  • 相关阅读:
    SNMP简介
    命令模式
    牛顿法
    仿射函数
    schedule
    命令模式
    牛顿法
    schedule
    仿射函数
    适配器模式
  • 原文地址:https://www.cnblogs.com/runong/p/3582602.html
Copyright © 2020-2023  润新知