jquery 全反选实现插件

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
/*
 * selectToDo - jQuery plugin for select checkbox
 *
 * Copyright (c) 2014 Elric Huang
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Project home:
 *   https://github.com/elrichuang/jquery.selectToDo.js
 *
 * Version:  0.1.3
 *
 */
;(function ($){
    $.fn.selectToDo = function (options){
        var settings = $.extend({},{
            "selectAllButton"    : $("#selectAll"),
            "selectNoneButton"   : $("#selectNone"),
            "selectInvertButton" : $("#selectInv"),
        }, options);
         
        var element = this;
         
        $(settings.selectAllButton).bind("click",function(){
            element.selectAll();
        });
        $(settings.selectNoneButton).bind("click",function(){
            element.selectNone();
        });
        $(settings.selectInvertButton).bind("click",function(){
            element.selectInvert();
        });
         
        this.selectAll = function(){//全选
            element.prop('checked', true);
        };
         
        this.selectNone = function(){//全不选
            element.prop('checked', false);
        };
         
        this.selectInvert = function(){//反选
            element.each(function(){
                if(this.checked){
                    $(this).prop('checked', false);
                }else{
                    $(this).prop('checked', true);
                }
            });
        };
         
        this.result = function(){
            var checkVal=[];
            element.each(function(){
                if(this.checked){
                    checkVal.push($(this).val());
                }
            });
            if(checkVal.length > 0)
            {
                // 引用回调函数
                return checkVal.join(",");
            }else{
                return null;
            }
        };
         
        return this;
    };
})(jQuery);

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:manacher算法的实现

下一篇:python根据出生日期计算年龄的代码