gpt4 book ai didi

javascript - 如何在 Bootstrap 模式上设置本地存储?

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

“modal-2”id 打开一个调查模式。

我想要的只是这个特定的模式,在有人点击关闭按钮后每 24 小时重新出现一次。

$(document).ready(function(){
var modals = ['#events'];
if (window.location.hash && ~modals.indexOf(window.location.hash)) {
$(window.location.hash).modal();
}
$("#modal-2").modal('show');
$(".modal:not(.noclose)").on("click","a",function(){
$(this).closest(".modal").modal("hide");
});
});

最佳答案

您可以将当前时间戳 Date.now() 设置为 localStorage 并在每次需要决定是否显示模式时检查它。示例代码:

var twentyFourHoursInMs = 24 * 60 * 60 * 1000;
var lastTimestamp = Number(localStorage.getItem("last-showed-at"));
var currentTimestamp = Date.now();
if ((currentTimestamp - lastTimestamp) >= twentyFourHoursInMs) {
localStorage.setItem("last-showed-at", currentTimestamp);
$("#your-modal-id").modal("show");
// Display modal once again
}

所以这是您案例中的完整代码:

$(document).ready(function(){
var modals = ['#events'];
if (window.location.hash && ~modals.indexOf(window.location.hash)) {
$(window.location.hash).modal();
}

$(".modal:not(.noclose)").on("click","a",function(){
$(this).closest(".modal").modal("hide");
});

var currentTimestamp = Date.now();

$("#cul8a").on("hidden.bs.modal", function () {
localStorage.setItem("last-showed-at", currentTimestamp);
});

// Check for modal eligibility

var twentyFourHoursInMs = 24 * 60 * 60 * 1000;
var lastTimestamp = Number(localStorage.getItem("last-showed-at"));

if ((currentTimestamp - lastTimestamp) >= twentyFourHoursInMs) {
setTimeout(function() {
localStorage.setItem("last-showed-at", currentTimestamp);
$("#cul8a").modal("show");
}, 4000);
}
});

关于javascript - 如何在 Bootstrap 模式上设置本地存储?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36749533/

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