jquery の slideToggle と carhartl の Cookie プラグイン ( https://github.com/carhartl/jquery-cookie ) を使用して、div が開いているかどうかの状態を記憶しています。私はそれを機能させ、位置を覚えていますが、デフォルトとしてセッションの終了までクッキーを持続させるのではなく、クッキーの有効期限を 1 日に設定したいと考えています。
トグル状態が開いているときは有効期限を設定できますが、閉じるとすぐに有効期限を設定する場所がわかりません。誰でも助けることができますか?
ありがとう :-)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="jquery.cookie.js"></script>
<style>
#billboardButton {
background-color:#f1f1f1;
color:#666;
padding:3px;
width:100px;
cursor:pointer;
text-align:center;
margin:0 auto;
}
</style>
</head>
<body>
<script>
$(document).ready(function(){
var cook= $.cookie('billboardStatus', 'true', {expires: 1});
if(cook=='false') {
$('#billboard').hide();
$("#billboardButton").css("backgroundColor", "#e1e1e1").text('Open Ad');
} else {
$('#billboard').show();
$("#billboardButton").text('Close Ad');
}
$('#billboardButton').on('click', function() {
$('#billboard').stop().slideToggle('normal', function(){
$("#billboardButton").css("backgroundColor", $(this).is(':not(:visible)') ? "#e1e1e1" : "").text($(this).is(':visible') ? 'Close Ad' : 'Open Ad');
$.cookie('billboardStatus', $(this).is(':visible'));
});
});
}); // End document ready
</script>
<div id="test" style="width:970px;margin:20px auto;">
<div id="billboardButton">Close Ad</div>
<div id='billboard' style='width:970px; height:250px;background-color:#0C9;'></div>
</div>
</body>
</html>