3

又是我。

我可以使用 Stack Overflow 上另一个问题中的这段代码为我的 FancyBox 设置 cookie:

$(document).ready(function(){

var check_cookie = $.cookie('the_cookie');

if(check_cookie == null){

    $.fancybox('<h2>Some content</h2>', {
        'onComplete' : function() {
                $.cookie('the_cookie', 'the_value');
        }
    });
}
});

这可能是一个愚蠢的问题,但现在我的问题是我丢失了 FancyBox 的格式。有人可以告诉我应该把这段代码放在哪里,以便我可以有我的 cookie 和格式吗?

{
   'autoDimensions'    : false,
   'width'             : 450,
   'height'            : 190,
   'transitionIn'      : 'none',
   'transitionOut'     : 'none'
}
4

1 回答 1

2
$(document).ready(function(){

var check_cookie = $.cookie('the_cookie');

if(check_cookie == null){

    $.fancybox('<h2>Some content</h2>', {
        'autoDimensions'    : false,
        'width'             : 450,
        'height'            : 190,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'onComplete' : function() {
                $.cookie('the_cookie', 'the_value');
        }
    });
}
});
于 2012-05-11T19:24:51.000 回答