前端 (cookie )页面进入存储一次

Posted chen527

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端 (cookie )页面进入存储一次相关的知识,希望对你有一定的参考价值。

        <!--引入jq-->
            <script>
                  var isShowTip = window.sessionStorage.getItem("isShow") ? window.sessionStorage.getItem(‘isShow‘) : false;
                  if(!isShowTip) {
                        window.sessionStorage.setItem("isShow", true);
                  } else {
                        document.getElementById("isshow").style.display = ‘none‘;
                  }
                  $("#tipBtn").bind("click", function() {
                        $(".tip-shadow").hide();
                  })
            </script>
         <section class="tip-shadow" id="isshow">
                  <div class="tip-box">
                        <p style="margin-top: 10px; margin-bottom:15px;"></p>
      
                        <span class="tipBtn" id="tipBtn">我知道了</span>
                  </div>
            </section>    

 

以上是关于前端 (cookie )页面进入存储一次的主要内容,如果未能解决你的问题,请参考以下文章

前端页面之间传值--利用cookie存储全局变量

JS使用cookie实现只出现一次的广告代码效果

使用cookie实现只出现一次的广告代码效果

后台接口之间如何模拟cookie读取

XSS

前端面试题-