码迷,mamicode.com
首页 > 其他好文 > 详细

像插件不。

时间:2015-02-10 13:03:59      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

        (function ($) {
            $.extend({
                BE: function (opt) {
                    var def = {
                        id: null,
                        type: null,
                        fun: null
                    }
                    $.extend({}, opt, def);
                    $(document).delegate(opt.id, opt.type, opt.fun);
                }
            });
        })(jQuery);
        $(function () {
            $.BE({
                id: "#hbgk_hyfn_flbox dd",
                type: "mouseenter",
                fun: function (e) {
                    $("#hbgk_hyfn_flbox dd").removeClass("current");
                    $(this).addClass("current");
                    $(".hbgk_hyfa_box").hide().eq($(this).index()).show();
                }
            });
        })

像插件不。

标签:

原文地址:http://www.cnblogs.com/gulehoo/p/4283531.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!