1

事前定義された時間クリックされたときに特定のdiv要素を非表示にできる簡単なJavaScriptコードが欲しいです。もう少しわかりやすくするために、ホームページが読み込まれたときに表示される提案ボックスがあります。私が欲しいのは、div閉じるボタンがクリックされると、ボックスdivを24時間(1日)閉じたままにするためのCookieを設定することです。簡単に言うと、div閉じるボタンを押すと、ボックスdivは24時間非表示になります。注:閉じるボタンでボックスを閉じることができるJavaScriptがありますが、更新のたびに読み込まれます。


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

4

2 に答える 2

13

TJ Crowderは彼のコメントの中で正しいですが、stackoverflowはあなたのコードを書くためにここにあるのではありません...私はあなたのためにいくつかのコードを書きました。これがjQueryを使用した解決策です。その中で、メッセージにaを使用し<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/。一度実行してから、もう一度実行します。2回目はポップアップが表示されません。

于 2012-05-20T15:16:32.277 に答える
1

これで始められるはずです:http ://www.quirksmode.org/js/cookies.html

次の例では、上記のリンクで宣言されている関数を使用しています。

クッキーの作成:

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

クッキーを読む:

// 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
}
于 2012-05-20T15:19:16.510 に答える