通知栏的HTML5本地存储

时间:2013-12-07 21:09:10

标签: local-storage

我有一个消息栏,但我不是最好的脚本,所以不知道如何处理本地存储

这是我到目前为止http://jsfiddle.net/nDtWM/11/

// It should be persistent until the user clears the cache
jQuery(document).ready(function($) {
// Checks to see if it is the first visit on browser open
if(sessionStorage.firstVisit != true) {
    // Stores visit
    sessionStorage.firstVisit = true;
    $('#how-to').show();
} else {
    $('#how-to').hide();
}
$("#close").click(function(){
    $("#how-to").hide();
});  
});

我相信我已经操纵它,所以它一直持续到用户清除缓存,但我不确定。此外,它不起作用,所以我不知道:P

1 个答案:

答案 0 :(得分:0)

sessonStorage只会持续到用户关闭浏览器为止。您可能想要使用localStorage。

此外,存储值始终存储为字符串,因此您需要将它们用作字符串或将其转换为您想要的任何内容。