• jquery表格简单插件


    1、一直对jquery插件感觉非常神奇。今天动手写了一个超级简单的案例。

    2、效果

    3、体会

    a、jquery插件编写能力。

    须要具备一定js能力的编写。还有写css样式的运用;希望以后这方面会有提高。

    b、能封装插件尽量封装。

    c、面向对象的方式去写对象。

    4、代码

    /**
     * Created by Administrator on 2015/8/17 0017.
     */
    (function ($) {
        $.fn.tableUI = function (options) {
            var defalus = {
                evenRowClass: "evenRow",
                oddClass: "oddRow",
                activeRowClass: "activeRow"
            }
            var options = $.extend(defalus, options);
            // do somethings
            this.each(function () {
                var thisTable = $(this);
                //加入奇偶行颜色
                $(thisTable).find("tr:even").addClass(options.evenRowClass);
                $(thisTable).find("tr:odd").addClass(options.oddClass);
                //加入活动行颜色
                $(thisTable).find("tr").bind("mouseover", function () {
                    $(this).addClass(options.activeRowClass);
                });
                $(thisTable).find("tr").bind("mouseout", function () {
                    $(this).removeClass(options.activeRowClass);
                });
            });
        }
    })(jQuery);

    5、源码

    http://download.csdn.net/detail/u011431550/9016657

  • 相关阅读:
    计算机组成原理:“性能”是什么?
    试题 基础练习 Huffuman树
    最小堆的插入删除函数
    特殊函数
    进程控制
    进程的描述
    进程管理
    生成和配置Linux操作系统
    系统调用
    Shell脚本编程
  • 原文地址:https://www.cnblogs.com/yjbjingcha/p/6971528.html
Copyright © 2020-2023  润新知