zoukankan      html  css  js  c++  java
  • 自制的几个jquery插件

    1.颜色插件,比用css方便些

    //1.插件编写
            ;(function ($) {
                $.fn.extend({
                    "color":function(value){
                       return this.css("color",value);
                    }
                });
            })(jQuery);
    
     //2.插件应用
            $(function () {
                $("div:eq(1)").color("red");
            });

    1.表格各行变色插件

    //1.插件编写
    
           ;(function ($) {
                $.fn.extend({
                    "alterBgColor":function(options){
                        options = $.extend({
                            odd:"odd",
                            even:"even",
                            selected:"selected"
                        },options);
                        this.each(function(){
                            $("tbody>tr:odd", this).addClass(options.odd);
                            $("tbody>tr:even", this).addClass(options.even);
                            $("tbody>tr",this).click(function(){
                                var hasSelected = $(this).hasClass(options.selected);
                                $(this)[hasSelected ? "removeClass":"addClass"](options.selected).find(":checkbox").attr("checked",!hasSelected);
                            });
                        });
                    }
                });
            })(jQuery);
            //2.插件应用
            $(function () {
                $("table").alterBgColor();
            });
    

      

  • 相关阅读:
    [转载]苹果推送通知服务
    Lovekey
    大数阶乘的位数
    大明A+B
    大数取余
    A+Bcoming
    大数取余(C++)
    验证角谷猜想
    麦森数(转)
    大数阶乘的位数(C++)
  • 原文地址:https://www.cnblogs.com/stevenjson/p/3334515.html
Copyright © 2011-2022 走看看