gpt4 book ai didi

javascript - 每次显示警报时都会增加 sessionStorage 值

转载 作者:行者123 更新时间:2023-12-03 06:01:00 26 4
gpt4 key购买 nike

$.jAlert({
'content' : 'Now I will show this alert and increment sessionStorage my_variable by 1.',
'onClose' : function(alert) {
sessionStorage.setItem("my_variable", "this_is_the_value_i_need_to_increment");
}
});

第一次显示此警报时,“this_is_the_value_i_need_to_increment”应为 1。第二次显示警报时,“this_is_the_value_i_need_to_increment”应为 2。依此类推。

这可能吗?

最佳答案

只需将其解析为整数并将其增加 1,然后再次设置 item,如下所示:

$.jAlert({
'content' : 'Now I will show this alert and increment sessionStorage my_variable by 1.',
'onClose' : function (alert) {
sessionStorage.setItem("my_variable", 1 + parseInt(sessionStorage.getItem("my_variable")))
}
});

当然,my_variable 应该在警报之前初始化,例如:

sessionStorage.setItem("my_variable",0);

关于javascript - 每次显示警报时都会增加 sessionStorage 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39750174/

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