gpt4 book ai didi

javascript - 我需要添加一个加载一次的 JavaScript 加载函数

转载 作者:行者123 更新时间:2023-11-30 18:09:03 25 4
gpt4 key购买 nike

我正在寻找一种方法来添加一个函数,告诉我的 .playerWindow 使用 cookie 只加载一次。现在每次我刷新页面时它都会加载。

<script type="text/javascript">

$(function () {

$("#button").click(function () {
$("#overlay").fadeTo(1000, .8);
$(".playerWindow").show(750);
//$("body").scrollTop(0);
});

$(".closePlayer, #overlay").click(function () {
$(".playerWindow").hide(750);
$("#overlay").fadeOut(1000);
});

});

$(window).load(function () {
if (document.cookie.indexOf('visited=true') === -1) {
var fifteenDays = 1000 * 60 * 60 * 24 * 15;
var expires = new Date((new Date()).valueOf() + fifteenDays);
document.cookie = "visited=true;expires=" + expires.toUTCString();
$("#overlay").fadeTo(1000, .8);
$(".playerWindow").show(750);
}
});

</script>

最佳答案

$(window).load(function() {
if (document.cookie.indexOf('visited=true') === -1) {
var fifteenDays = 1000*60*60*24*15;
var expires = new Date((new Date()).valueOf() + fifteenDays);
document.cookie = "visited=true;expires=" + expires.toUTCString();
$("#overlay").fadeTo(1000, .8);
$(".playerWindow").show(750);
}
});

澄清一下,这个 HTML 页面适用于我的 Apache 服务器。

<html>
<head></head>
<body>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
$(window).load(function() {
if (document.cookie.indexOf('visited=true') === -1) {
var fifteenDays = 1000*60*60*24*15;
var expires = new Date((new Date()).valueOf() + fifteenDays);
document.cookie = "visited=true;expires=" + expires.toUTCString();
alert("bam!");
}
});


</script>
</body>
</html>

它显示“砰!”我第一次访问,然后第二次、第三次等什么都没有。在 Chrome 中打开隐身窗口会导致它再次出现。

关于javascript - 我需要添加一个加载一次的 JavaScript 加载函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15078554/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com