我已经向我的网站添加了一些代码,但无法确定如何添加 cookie 功能 这是目前的代码:
<script type="text/javascript">
$(document).ready(function () {
$.fancybox('<p class="msgAlert">The following pictures contain nudity. <br />If you are not allowed or willing to watch such content please leave this page.<p><a href="javascript:void(0);" id="do_accept" class="button butgreen">Yes I Accept</a></p></p>', {
closeBtn: false,
closeClick: false,
helpers: {
overlay: {
css: {
'background': 'rgba(0, 0, 0, 0.9)'
}
}
}
});
$("body").on("click", "#do_accept", function () {
$.fancybox.close();
});
$("body").on("click", ".fancybox-overlay", function () {
window.location.href = "index.php";
});
});
</script>
我无法添加 php 代码,所以我需要一些建议。想法是有一个 10 天的 cookie,以便每 10 天只显示一次消息。这是链接:https ://www.olafernst.com/photo/gallerynudes.html 非常感谢