• jQuery使用prop设置checkbox全选、反选


    $(document).ready(function(){
                $("#allsel").click(function(){
                /*
                    var is = $(this).attr("checked");
                    if(is=="checked"){
                    $("table :checkedbox").attr("checked",true);
                    }
                */
                //prop
                var is =$(this).prop("checked");
                $("table :checkbox").prop("checked",is);
                
                });
                
                
                $("#notsel").click(function(){
                    $("table :checkbox").prop("checked",function(index,attr){
                        return !attr;
                    
                    });
                
                }
                
                );

            });




    $(function(){
        var checkbox = $("input[type='checkbox']");
        //全选
        $('#select-all').click(function(){
            checkbox.attr('checked', true);
        });

        //反选
        $('#select-reverse').click(function(){
            checkbox.each(function(i, dom){
                if ( $(dom).attr('checked') ) {
                    $(dom).removeAttr('checked');
                } else {
                    $(dom).attr('checked', 'checked');
                }
            });
        });
    });

  • 相关阅读:
    mysql 远程登录修改配置
    scrapy--分布式爬虫
    win10---cmd终端下连接ubantu--SSH SERVER服务
    将python环境打包成.txt文件
    ubantu安装python3虚拟环境
    selenium 自动化安装火狐谷歌插件
    mysql主从复制-读写分离-原理
    mysql主从复制原理
    mysql储存引擎
    mysql检查-优化-分析
  • 原文地址:https://www.cnblogs.com/baobeiqi-e/p/9884833.html
Copyright © 2020-2023  润新知