如何使用Cookie隐藏div 24小时

时间:2018-12-07 13:38:23

标签: javascript html cookies show-hide

我需要将此div隐藏24小时。 put无法正常工作。

我想要一个简单的JavaScript代码,当单击一段预定时间后,该代码将允许我隐藏某个div元素。
为了提供更多信息,我在加载主页时出现了一个建议框。我想要的是单击div关闭按钮时,它会设置一个Cookie,以使div框保持关闭状态24小时(1天)。
简而言之,当按下div关闭按钮时,div框将隐藏24小时。

注意:我有一个javascript代码,允许关闭按钮关闭该框,但每次刷新时都会重新加载。
Link to the project's file (编辑评论:从不受信任的网站下载文件并不安全,最好等待作者使用代码来编辑问题。)

2 个答案:

答案 0 :(得分:0)

我注意到#splashscreen默认设置为可见。您可以默认隐藏它,并且仅在Cookie 不存在时显示。甚至更简单地添加else statement并在存在cookie的情况下将其隐藏。请如下更改您的JS代码的前if statement

// If the 'hide cookie is not set we show the message
  if (!readCookie('hide')) {
    $('#splashscreen').show();
  } else {
    $('#splashscreen').hide();
  }

答案 1 :(得分:0)

谢谢所有正确的代码

$(document).ready(function() {

  // If the 'hide cookie is not set we show the message
  if (!readCookie('hide')) {
    $('#applink').show();
  }else {
    $('#applink').hide();
  }

  // Add the event that closes the popup and sets the cookie that tells us to
  // not show it again until one day has passed.
  $('#playstorclose').click(function() {
    $('#applink').hide();
    createCookie('hide', true, 1)
    return false;
  });

});

// ---
// And some generic cookie logic
// ---
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else var expires = "";
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}
<div class="playstorapp" id="applink" style="text-align: center;margin: auto">
        <a id="playstorclose" href="JavaScript:void(0)">X</a>
        <a class="applink" href="https://play.google.com/store/apps/details?id=com.aradev.net&rdid=com.aradev.net" target="_blank">
            Download
        </a>
    </div>