zoukankan      html  css  js  c++  java
  • js 设置 cookie 定时 弹出层 提示层 下次访问 不再显示 弹窗 getCookie setCookie setTimeout

    <div class="index-tt"></div>
    .index-tt {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: fixed;
        z-index: 66;
        background: url(../images/index-tt01.png);
        background-size: 100%;
        display: none;
    }
    <script>//遮罩层
    console.log(getCookie('tt'));
    if( getCookie('tt') != 7){
    
        setTimeout(function(){
            $('.index-tt').fadeIn();
            document.body.style.overflow='hidden';
            document.body.style.height='100%';
            document.documentElement.style.overflow='hidden';
            window.scrollTo(0,0);
        },3000);
    
    }
    
        $('.index-tt').click(function(){
            $('.index-tt').fadeOut();
            document.body.style.overflow='auto';
            document.body.style.height='auto';
            document.documentElement.style.overflow='auto';
            setCookie('tt','7',10000);
        });
    
        function setCookie(c_name,value,expiredays)
        {
        var exdate=new Date()
        exdate.setDate(exdate.getDate()+expiredays)
        document.cookie=c_name+ "=" +escape(value)+
        ((expiredays==null) ? "" : ";expires="+exdate.toGMTString())
        }    
    
    
        function getCookie(c_name)
        {
            if (document.cookie.length>0)
            {
                c_start=document.cookie.indexOf(c_name + "=")
                if (c_start!=-1)
                { 
                c_start=c_start + c_name.length+1 
                c_end=document.cookie.indexOf(";",c_start)
                if (c_end==-1) c_end=document.cookie.length
                return unescape(document.cookie.substring(c_start,c_end))
                } 
            }
            return ""
        }
    
    </script>
  • 相关阅读:
    sysctl.conf文件详解
    EOF的用法
    centos7下mail邮件的查看删除、禁止部分应用发邮件
    change命令
    mac访达显示路径复制路径
    MacOS修改默认的python版本和pip版本
    mac自带录屏
    excel
列A
去除列B后的数据
    selenium初识:selenium的安装及简单实现百度搜索
    React如何运行从github上下载的代码
  • 原文地址:https://www.cnblogs.com/shaoing/p/8797427.html
Copyright © 2011-2022 走看看