隐藏div 24小时cookie javascript?

时间:2012-05-20 15:10:47

标签: javascript html cookies popup hide

我想要一个简单的JavaScript代码,它允许我在预定义的时间内单击时隐藏某个div元素。为了提供更多信息,我在主页加载时会出现一个建议框。我想要的是当点击div关闭按钮时,它设置一个cookie以保持盒子div关闭24小时(1天)。简单地说,当按下div关闭按钮时,盒子div被隐藏24小时。注意:我有一个允许关闭按钮关闭框的javascript,但它会加载每次刷新。


http://i.stack.imgur.com/du1pA.jpg

2 个答案:

答案 0 :(得分:12)

虽然T.J. Crowder在他的评论中是正确的,stackoverflow不是为了编写你的代码......我为你写了一些代码。这是使用jQuery的解决方案。在其中,您将使用<div id="popupDiv">...</div>作为消息,并在其中使用ID为“close”的链接来关闭div。

$(document).ready(function() {

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

  // Add the event that closes the popup and sets the cookie that tells us to
  // not show it again until one day has passed.
  $('#close').click(function() {
    $('#popupDiv').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);
}

这是一个js小提琴:http://jsfiddle.net/FcFW2/1/。运行一次然后再次运行。第二次弹出窗口没有显示。

答案 1 :(得分:1)

这应该让你开始:http://www.quirksmode.org/js/cookies.html

以下示例使用上述链接中声明的函数。

创建一个cookie:

// when the div is clicked
createCookie('hideSuggestionBox', 'true', 1);

阅读cookie:

// when deciding whether to show or hide the div (probably on document ready)
if (readCookie('hideSuggestionBox') === 'true') {
    // do not show the box, the cookie is there
} else {
    // the cookie was not found or is expired, show the box
}