0

如何安装fancybox,使其仅在您第一次访问主页时显示。这应包括:

<h1> Please select your language </h1>
<div> class="select-language" </div>

无论您登陆哪个页面,fancybox 都只会显示一次。

4

2 回答 2

0
You can try this.

$(document).ready(function{

if (! $.cookie("cookieName")){

// do your stuff

// set cookie now

$.cookie("cookieName", "firstSet", {"expires" : 7})

}

})

以上使用以下插件。http://www.electrictoolbox.com/jquery-cookies/

于 2012-09-26T08:41:33.323 回答
0

用cookie尝试以下代码,

$(document).ready(function() {
    var visited = $.cookie('visited');
    if (visited == 'yes') {
        return false;
    } else {
        $.fancybox({
            'width': '60%',
            'height': '80%',
            'autoScale': true


        });
    }
    $.cookie('visited', 'yes', { expires: 7 });
    });
于 2012-09-26T08:43:02.263 回答