前端 (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 )页面进入存储一次的主要内容,如果未能解决你的问题,请参考以下文章