私は 3 つの異なる div を表示したいと考えています。
これを実現するためのコードがあると思っていましたが、機能しておらず、何が間違っているのかを理解するのに苦労しています。
$(document).ready(function() {
var cookieRCCS = $.cookie('shownDialog');
console.log(cookieRCCS);
// Check if the cookie exists.
if ( cookieRCCS === null ) {
console.log("1st if statement " + cookieRCCS);
$("#hellopanel1").show();
// set the cookie to value 1
$.cookie('shownDialog', '1', {expires: 7});
}
else if ( cookieRCCS === 1 ) {
console.log("2nd if statement " + cookieRCCS);
$("#hellopanel2").show();
// If the cookie exists, take the value
cookie_value = $.cookie('shownDialog');
// Convert the value to an int to make sure
cookie_value = parseInt(cookie_value);
// Add 1 to the cookie_value
cookie_value++;
// Save the incremented value to the cookie
$.cookie('shownDialog', cookie_value, {expires: 7});
}
else if ( cookieRCCS === 2){
console.log("3rd if statement " + cookieRCCS);
$("#hellopanel3").show();
cookie_value = $.cookie('shownDialog');
cookie_value = parseInt(cookie_value);
cookie_value++;
$.cookie('shownDialog', cookie_value, {expires: 7});
}
else{
console.log("4th Time Here");
}
});