菜单项的页面加载上的活动类

时间:2010-08-09 16:03:06

标签: jquery class menu filter focus

我有一个硬编码的li菜单,它使用filterable.js根据哈希标记过滤项目列表。

如果选择了该项,我可以获得焦点,但是,我希望在页面加载时选择所有标记。我将“current”类添加到“all”菜单项中,但这不起作用。

请参阅:http://thinquetanque.com/portfolio

filterable.js的代码:

/*
* Copyright (C) 2009 Joel Sutherland.
* Liscenced under the MIT liscense
*/

(function($) {
    $.fn.filterable = function(settings) {
        settings = $.extend({
            useHash: true,
            animationSpeed: 5000,
            show: { width: 'show', opacity: 'show' },
            hide: { width: 'hide', opacity: 'hide' },
            useTags: true,
            tagSelector: '#portfolio-filter a',
            selectedTagClass: 'current',
            allTag: 'all'
        }, settings);

        return $(this).each(function(){

            /* FILTER: select a tag and filter */
            $(this).bind("filter", function( e, tagToShow ){
                if(settings.useTags){
                    $(settings.tagSelector).removeClass(settings.selectedTagClass);
                    $(settings.tagSelector + '[href=' + tagToShow + ']').addClass(settings.selectedTagClass);
                }
                $(this).trigger("filterportfolio", [ tagToShow.substr(1) ]);
            });

            /* FILTERPORTFOLIO: pass in a class to show, all others will be hidden */
            $(this).bind("filterportfolio", function( e, classToShow ){
                if(classToShow == settings.allTag){
                    $(this).trigger("show");
                }else{
                    $(this).trigger("show", [ '.' + classToShow ] );
                    $(this).trigger("hide", [ ':not(.' + classToShow + ')' ] );
                }
                if(settings.useHash){
                    location.hash = '#' + classToShow;
                }
            });

            /* SHOW: show a single class*/
            $(this).bind("show", function( e, selectorToShow ){
                $(this).children(selectorToShow).fadeIn('slow');
            });

            /* SHOW: hide a single class*/
            $(this).bind("hide", function( e, selectorToHide ){
                $(this).children(selectorToHide).fadeOut('slow');
            });

            /* ============ Check URL Hash ====================*/
            if(settings.useHash){
                if(location.hash != '')
                    $(this).trigger("filter", [ location.hash ]);
                else
                    $(this).trigger("filter", [ '#' + settings.allTag ]);
            }

            /* ============ Setup Tags ====================*/
            if(settings.useTags){
                $(settings.tagSelector).click(function(){
                    $('#portfolio-list').trigger("filter", [ $(this).attr('href') ]);

                    $(settings.tagSelector).removeClass('current');
                    $(this).addClass('current');
                });
            }
        });
    }
})(jQuery);


$(document).ready(function(){

    $('#portfolio-list').filterable();

});

将“当前”类添加到我的投资组合项列表中。我确定必须有一个jquery函数来加载一个类,但我还没有找到它。

任何帮助都将不胜感激。

谢谢!

1 个答案:

答案 0 :(得分:1)

你有这个:

$(document).ready(function(){

    $('#portfolio-list').filterable();

});

试试这个:

$(document).ready(function(){

    $('#portfolio-list').filterable();
    $('#portfolio-list').trigger('filter', [ '#all' ]);

});

或者(未经测试)......

$(document).ready(function(){

    $('#portfolio-list').filterable();
    $("#portfolio-filter li:first a").addClass("current");

});

这会将当前类添加到页面加载的第一个列表元素“All”中。不太确定这是否有帮助。