如何仅一次设置显示通知栏的cookie [英] how to set cookie for display notification bar at only once

查看:123
本文介绍了如何仅一次设置显示通知栏的cookie的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在自己的网站上设置了通知,

I had set notification on my site,

这是通知栏的jQuery

This is the jquery for notification bar:

function showNotification(params){
    // options array
    var options = { 
        'showAfter': 0, // number of sec to wait after page loads
        'duration': 0, // display duration
        'autoClose' : false, // flag to autoClose notification message
        'type' : 'success', // type of info message error/success/info/warning
        'message': '', // message to dispaly
        'link_notification' : '', // link flag to show extra description
        'description' : '' // link to desciption to display on clicking link message
    }; 
    // Extending array from params
    $.extend(true, options, params);

    var msgclass = 'succ_bg'; // default success message will shown
    if(options['type'] == 'error'){
        msgclass = 'error_bg'; // over write the message to error message
    } else if(options['type'] == 'information'){
        msgclass = 'info_bg'; // over write the message to information message
    } else if(options['type'] == 'warning'){
        msgclass = 'warn_bg'; // over write the message to warning message
    } 

    // Parent Div container
    var container = '<div id="info_message" class="'+msgclass+'"><div class="center_auto"><div class="info_message_text message_area">';
    container += options['message'];
    container += '</div><div class="info_close_btn button_area" onclick="return closeNotification()"></div><div class="clearboth"></div>';
    container += '</div><div class="info_more_descrption"></div></div>';

    $notification = $(container);

    // Appeding notification to Body
    $('body').append($notification);

    var divHeight = $('div#info_message').height();
    // see CSS top to minus of div height
    $('div#info_message').css({
        top : '-'+divHeight+'px'
    });

    // showing notification message, default it will be hidden
    $('div#info_message').show();

    // Slide Down notification message after startAfter seconds
    slideDownNotification(options['showAfter'], options['autoClose'],options['duration']);

    $('.link_notification').live('click', function(){
        $('.info_more_descrption').html(options['description']).slideDown('fast');
    });

}
// function to close notification message
// slideUp the message
function closeNotification(duration){
    var divHeight = $('div#info_message').height();
    setTimeout(function(){
        $('div#info_message').animate({
            top: '-'+divHeight
        }); 
        // removing the notification from body
        setTimeout(function(){
            $('div#info_message').remove();
        },200);
    }, parseInt(duration * 3000));   

}

// sliding down the notification
function slideDownNotification(startAfter, autoClose, duration){    
    setTimeout(function(){
        $('div#info_message').animate({
            top: 0
        }); 
        if(autoClose){
            setTimeout(function(){
                closeNotification(duration);
            }, duration);
        }
    }, parseInt(startAfter * 5000));    
}

这是我在索引页面中添加的代码:

This is the code i added in index page:

<script >
          function showAutoCloseMessage(){
             showNotification({
      message: "You cart total must be at least $200 for free shipping",
          autoClose: true,
          duration: 2
          });             
     }       
     $(document).ready(function() {
           showAutoCloseMessage();
       });                             
     </script>

现在我需要为此设置cookie.我需要,当用户进入网站时,该时间仅显示通知栏,之后不显示.我的意思是,当用户重新加载网站时,不显示通知栏.

Now i need to set cookies for this. I need, when user enter the website, that time only show notification bar, after that don't show. I mean, when user reload the site don't show the notification bar.

有人可以帮助我吗?预先感谢.

Can anybody help me? Thanks in advance.

推荐答案

您可以使用 cookie插件 并放置条件,

you can use cookie plugin and put the condition,

if ($.cookie('setCookie') == null) {
...
}

这篇关于如何仅一次设置显示通知栏的cookie的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆