我正在尝试仅在首页加载时显示弹出窗口,但是在我当前的脚本中,如果刷新页面,它只会显示弹出窗口。弹出窗口应该在您第一次访问该页面时显示,但不会再次显示。
<script type="text/javascript">// <![CDATA[
document.addEventListener('DOMContentLoaded', function() {
function setCookie(cname,cvalue,exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = "expires=" + d.toGMTString();
document.cookie = cname+"="+cvalue+"; "+expires;
}
function getCookie(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for(var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return '';
}
$(document).ready(function() {
if(getCookie('popup') !== ''){
$('.popup-wrapper').css('display','block');
} else {
setCookie('popup','open',1);
}
$('.popup-close').click(function(){
setCookie('popup','close',1);
$('.popup-wrapper').css('display','none');
});
});
});
// ]]></script>
任何帮助将不胜感激。
答案 0 :(得分:0)
您使用Cookie的原因吗?如果没有,您可以使用localStorage并编写一些更简洁的内容。
例如
>>> row, col = np.where(df.cumsum(axis=1) == 1)
>>> df.values[row, col] = False
>>> df
a b c
0 False True True
1 False False True
2 False False False
});
不需要getCookie函数
Cookie被更多地用于服务器端功能,而localStorage更适合于客户端功能。因此,这里发生的是您的用户将不会再看到该弹出窗口,除非他们在那里删除了localStorage
答案 1 :(得分:0)
仅在显示弹出窗口后添加localStorage.setTtem。并且不要忘记制作.popup-wrapper
display:none
if(!localStorage.getItem('shownPopUp')){
$('.popup-wrapper').css('display','block');
localStorage.setItem('shownPopUp', true);
}