我正在使用它,但是cookie消息在每次刷新和打开选项卡后仍然出现。
$(document).ready(function () {
if (!!localStorage.getItem('firstVisitVisp')) {
localStorage.setItem('firstVisitVisp', 'true');
setTimeout(function () {
$("#cookieConsent").fadeIn(200);
}, 4000);
$("#closeCookieConsent, .cookieConsentOK").click(function () {
$("#cookieConsent").fadeOut(200);
});
}
});
答案 0 :(得分:2)
您快到了-只需移除!!
并将其更改为!
:
if (!localStorage.getItem('firstVisitVisp')) {...}