ポップアップボックスを24時間ごとにのみロードしようとしていますが、JQueryクリックイベントを取得してCookieを受け入れる/作成する方法がわかりません。私はこれに新しい相対性理論です。どんな助けでもいただければ幸いです!
<link rel="stylesheet" href="colorbox.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="./colorbox/jquery.colorbox.js"></script>
<script>
$(document).ready(function(){
$(".ajax").colorbox();
});
</script>
<script>
$(document).ready(function() { $('.ajax').click(); });
// Create a cookie
$.cookie('the_cookie', 'the_value');
// Create expiring cookie, 7 days from then:
$.cookie('the_cookie', 'the_value', { expires: 1 });
// Read a cookie
$.cookie('the_cookie'); // => 'the_value'
$.cookie('not_existing'); // => null
// EDIT
// Attaching to a button click (jQuery 1.7+) and set cookie
$("#ajax").on("click", function () {
$.cookie('the_cookie', 'the_value', { expires: 1 });
});
// Attaching to a button click (jQuery < 1.7) and set cookie
$("#ajax").click(function () {
$.cookie('the_cookie', 'the_value', { expires: 1 });
});
</script>
</head>
<body>
<p><a class='ajax' href="./content/ajax.html" title="Vote IG Top 100!"></a></p>
</body>
これがウェブページです:
http://iconik-gaming.com/popup/
みんな、ありがとう!