最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - jQuery UI Accordion + Cookies - Closed by Default? - Stack Overflow

programmeradmin1浏览0评论

With the jQuery UI Accordion, I am successful in the use of cookies to remember the last active state when refreshing the page- however I am unable to:

  1. set to collapsed on first visit

  2. have cookie remember if the user has manually collapsed after opening

I've tried to attempt creating a function with conditional statement on the "active" option but was unsuccessful.

/

jQuery(document).ready(function(){
        var act = 0;
        $( "#accordion" ).accordion({
            create: function(event, ui) {
                //get index in cookie on accordion create event
                if($.cookie('saved_index') != null){
                   act =  parseInt($.cookie('saved_index'));
                }
            },
            change: function(event, ui) {
                //set cookie for current index on change event
                $.cookie('saved_index', null);
                $.cookie('saved_index', ui.options.active);
            },
            active:parseInt($.cookie('saved_index')),
            collapsible: true
        });
    });

With the jQuery UI Accordion, I am successful in the use of cookies to remember the last active state when refreshing the page- however I am unable to:

  1. set to collapsed on first visit

  2. have cookie remember if the user has manually collapsed after opening

I've tried to attempt creating a function with conditional statement on the "active" option but was unsuccessful.

http://jsfiddle/77xC9/18/

jQuery(document).ready(function(){
        var act = 0;
        $( "#accordion" ).accordion({
            create: function(event, ui) {
                //get index in cookie on accordion create event
                if($.cookie('saved_index') != null){
                   act =  parseInt($.cookie('saved_index'));
                }
            },
            change: function(event, ui) {
                //set cookie for current index on change event
                $.cookie('saved_index', null);
                $.cookie('saved_index', ui.options.active);
            },
            active:parseInt($.cookie('saved_index')),
            collapsible: true
        });
    });

Share Improve this question asked Jul 19, 2012 at 23:21 JoeJoe 6,5834 gold badges31 silver badges42 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 11

The shared code doesn't work in jQuery UI 1.9+. Following code works!

jQuery(document).ready(function() {
    $("#accordion").accordion({
        activate: function(event, ui) {
            $.cookie('saved_index', $("#accordion").accordion("option", "active"));
        },
        active: parseInt($.cookie('saved_index')),
        collapsible: true
    });
});
jQuery(document).ready(function(){
    $( "#accordion" ).accordion({
        change: function(event, ui) {
            $.cookie('saved_index', ui.options.active !== false ? ui.options.active : null);
        },
        active: $.cookie('saved_index') != null ? parseInt($.cookie('saved_index')) : false,
        collapsible: true
    });
});

ps: Google Chrome does not accept cookies if you open your page as a local file.

发布评论

评论列表(0)

  1. 暂无评论