如何在每个会话中仅显示一次通知栏?

时间:2013-11-01 22:30:26

标签: javascript jquery html5 local-storage

我有一个通知栏,我只想在每个会话中显示一次,或者可能在预定的时间内没有显示通知。我正在使用会话存储,但遗憾的是我无法使其正常工作。

由于

这是我的代码----------->

    <script>
$(document).ready(function() {

            var $alertdiv = $('<div id = "alertmsg"/>');
            $alertdiv.text("Join our email list and receive the latest updates at 3Elements Review.");
            $alertdiv.bind('click', function() {
                $(this).slideUp(200);
            });
            $(document.body).append($alertdiv);
            $("#alertmsg").fadeIn("slow"); 
            setTimeout(function() { $alertdiv.fadeOut(400) }, 6000);
                            });

$(window).load(function(){
        if(typeof(window.sessionStorage) != 'undefined') {
        $("#alertmsg").val(window.sessionStorage.getItem('mySessionVal'));
            window.sessionStorage.setItem('mySessionVal', $("#alertmsg").val());
            window.sessionStorage.setItem('storedWhen', (new Date()).getTime());
    }
});
</script>

1 个答案:

答案 0 :(得分:3)

没有明显的理由为sessionStorage使用window.onload,DOM就绪就足够了吗?

此外,您需要在显示消息之前检查存储中是否存在该值,否则消息将始终显示:

$(document).ready(function() {
    if (typeof window.sessionStorage != undefined) {
        if (!sessionStorage.getItem('mySessionVal')) {
    //          ^^^ you can check time here as well ?
            $('<div />', {
                id   : "alertmsg",
                text : "Join our email list and receive the latest updates at 3Elements Review.",
                on   : {
                    click: function() {
                        $(this).slideUp(200);
                    }
                }
            }).appendTo('body').fadeIn("slow").delay(6000).fadeOut("slow");
            sessionStorage.setItem('mySessionVal', true);
            sessionStorage.setItem('storedWhen', Date.now());
        }
    }
});

FIDDLE