gpt4 book ai didi

jQuery.cookie : How to show different div every page refresh from 3 div's?

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

我使用 jQuery.cookie 插件来保留相同的用户信息,因为每次从同一用户加载页面时我都必须加载不同的 div。我有第一次和第二次访问的代码,但我还需要第三次访问,然后再返回第一次。

<script>
jQuery(document).ready(function (){
if (jQuery.cookie('firstVisit') === undefined){
jQuery.cookie('firstVisit', 'value');
alert('first');
} else {
alert('second');
}
});
</script>

最佳答案

为此,请使用 Switch 语句。可以检查 cookie 的每个值。

<script>
jQuery(document).ready(function (){
if (jQuery.cookie('Visit') === undefined){
alert("first")
jQuery.cookie('Visit', 'first');
// action here
}else{
switch jQuery.cookie('Visit'){
case "first":
alert("second")
jQuery.cookie('Visit', 'second');
// action here
break;

case "second":
alert("third")
jQuery.cookie('Visit', 'third');
// action here
break;

case "third":
alert("first")
jQuery.cookie('Visit', 'first');
// action here
break;
}
}
});
</script>

关于jQuery.cookie : How to show different div every page refresh from 3 div's?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33038581/

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