3

我正在制作一个带有一些 jQuery 实验的小网站(有点“游戏”)。在每个游戏中都有一个目标,当找到目标并单击时,我想对页脚中的心形符号进行永久更改。我正在尝试为此使用cookie插件。

指向其中一个子页面的链接:http: //www.carlpapworth.com/htmlove/arrows.html

这是页脚CSS:

footer{
position: fixed;
bottom: 0px;
padding: 10px; 
width: 100%;
height: 100px;
background: /*url(../images/bgFooter.png)*/ #dddddd;
z-index: 2000;
}

.heartCollection{
width: 940px;
margin: 0 auto;
text-align: justify;
}

.heartCollection p{
font-size: 13px;
float: none;
width: 100%;
padding: 0;
margin: 0 0 -20px 0;
text-align: center;
position: relative;
}

.heartCollection ul li{
width: auto;
display: inline;
list-style: none;
float: left;
margin: 10px 0 -10px 0;
padding: 0 0 0 98px;
font-size: 70px;
}

.heartCollection ul li a{
font-family: menlo;
color: #cccccc;
}

.found{
color: #ff63ff;
}

.credits{
width: 100%;
height: auto;
margin: 80px auto;
bottom: 0px;
left: -40px;
position: relative;
text-align: right;
}

这是Javascript:

$(document).ready(function() {
    //help
    $('#helpInfo').hide();
    $('#help h2').click(function(){
        $('#helpInfo').show(300);
    });
    $('#helpInfo').click(function() {
        $(this).hide(300);
    });
    //reward  
    $('#reward').hide();
    $('#goal a').click(function(){
        $('#reward').fadeIn(1000);
    });
    //Collection
    $.cookie('class','found',{
    });
    var foundHeart = $.cookie('found');
    $('.exit').click(function(){
        $('#collection1').addClass(foundHeart);
    });

});

那么什么都没有发生,那我做错了什么?编辑:更重要的是,我应该怎么做才能解决它?

4

3 回答 3

2
 var foundHeart = $.cookie('class'); 

您应该按名称而不是按值获取 cookie :)

于 2012-10-19T07:18:25.057 回答
2

有两点不对:

第一的,

var foundHeart = $.cookie('found');

您正在尝试使用上述函数按名称检索 cookie。相反,您正在传递值。

cookie 参数设置如下:

$.cookie('name', 'value', { options });

因此,您的 cookie 的名称是“类”,值是“找到”。

换句话说

var foundHeart = $.cookie('found');

应该

var foundHeart = $.cookie('class');

其次,即使您更正了您的代码无法按预期运行。为什么?因为您在加载时设置了 cookie。

此行设置 cookie:

$.cookie('name', 'value');

但是您在文档就绪功能中运行它。

您应该将该行移到此函数中:

$('#goal a').click(function(){
    $('#reward').fadeIn(1000);
    // moved set cookie function here
    $.cookie('class', 'found');
});

所以它只有在你达到目标时才会设置。

于 2012-10-19T07:21:07.293 回答
0

试试这个插件: https ://github.com/tantau-horia/jquery-SuperCookie

如果心脏默认 cookie 不存在,则创建它:

//name of the cookie: hearts
//name of the hearts: h1,h2,h3,h4,h5,h6
//values: 1 if active, 0 if inactive
if ( !$.super_cookie().check("hearts") ) {
   $.super_cookie().create("hearts",{h1:"0",h2:"0",h3:"0",h4:"0",h5:"0",h6:"0"});
};

找到目标时(以目标 1 为例)

$("#collection1").addClass('foundHeart');
$.super_cookie().replace_value("hearts","h1","1")

在页面重新加载时记住是否选择了心脏

if ( $.super_cookie().read_value("hearts","h1") == "1" ) {
   $("#collection1").addClass('foundHeart');
};
于 2012-10-19T10:00:45.047 回答