使用Cookie保存Javascript切换状态

时间:2018-09-06 10:23:48

标签: javascript jquery jquery-cookie

我想保存站点标题显示的状态。我如何用Jquery Cookie保存它?

(function ($) {
// The initial load event will try and pull the cookie to see if the toggle is "open"
var openToggle = getCookie("show") || false;
if ( openToggle )
    div.style.display = "block";
else
    div.style.display = "none";
if ( window.location.pathname == '/' ){
    // Index (home) page
    div.style.display = "block";
}
// The click handler will decide whether the toggle should "show"/"hide" and set the cookie.
$('#Togglesite-header').click(function() {
    var closed = $("site-header").is(":hidden");
    if ( closed )
       div.style.display = "block";
    else
        div.style.display = "none";
    setCookie("show", !closed, 365 );
});

});

1 个答案:

答案 0 :(得分:3)

您在这里遇到了几个问题。首先,您正在定义类似IIFE的函数包装器,但是您从未调用它,因此您的代码将无法运行。您需要在末尾添加(jQuery)才能传递引用,如果您打算这样做,请使用实际的document.ready事件处理程序。

第二,Cookie只存储字符串,因此您需要将字符串转换为布尔值(这是使用JS的数据类型的雷区),或者可以只比较字符串。试试这个:

(function($) {
  var $div = $(div);
  
  var openToggle = getCookie("show") == 'true';
  $div.toggle(openToggle);
    
  if (window.location.pathname == '/')
    $div.show();
  
  $('#Togglesite-header').click(function() {
    var closed = $("site-header").is(":hidden");
    $div.toggle(closed);
    setCookie("show", !closed, 365);
  });
})(jQuery);

还有两点需要注意。首先,我将其修改为使用jQuery。如果您已经加载了它,则还可以利用它的简单性来减少代码的繁琐程度。

第二,假设您的getCookie()setCookie()函数正在运行;您还没有显示它们的实现,但是由于有很多示例的工作示例,我认为这不是您的问题。