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のフォーマットが失われたことです。誰かが私が私のクッキーとフォーマットを持つことができるように私がこのコードをどこに置くべきか教えてもらえますか?

{
   '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 に答える