使用带有 $.cookie() 的 cookie 保存多个面板的折叠状态
Saving multiple panel's collapsed state using cookies with $.cookie()
我正在尝试确定如何使用 $.cookie 保存可折叠面板的折叠状态。
This 问题到目前为止很有帮助,但仍然缺少最终解决方案。
到目前为止我找到的任何解决方案都只保存了最后一个向下滚动的面板,因此当页面重新加载时,唯一保存的面板是最后一个。
我需要的是保存所有向下滚动的面板,而不是只保存一个面板。
Link 到 Github 上的 jCookie 插件。
Link 在 JSFiddle 上演示
更新
有人建议 LocalStorage 是更适合我要实现的目标的解决方案。如果您可以评论为什么以及什么是本地存储,将不胜感激。
更新 2
因为建议本地存储比使用 cookie 来解决这个问题更好。所选答案基于此。然而,正如 Robin 所提到的,在 HTTPS 站点上使用这种技术也有缺点。
HTML
<div class="panel panel-default">
<div data-toggle="collapse" data-target="#panel1" class="panel-heading collapsed">
<h4 class="panel-title">
<a> Panel 1 </a>
</h4>
</div>
<div id="panel1" class="panel-collapse collapse">
<div class="panel-body">
</div>
</div>
</div>
<div class="panel panel-default">
<div data-toggle="collapse" data-target="#panel2" class="panel-heading collapsed">
<h4 class="panel-title">
<a> Panel 2 </a>
</h4>
</div>
<div id="panel2" class="panel-collapse collapse">
<div class="panel-body">
</div>
</div>
</div>
<div class="panel panel-default">
<div data-toggle="collapse" data-target="#panel3" class="panel-heading collapsed">
<h4 class="panel-title">
<a> Panel 3 </a>
</h4>
</div>
<div id="panel3" class="panel-collapse collapse">
<div class="panel-body">
</div>
</div>
</div>
jQUERY
$(".panel .panel-collapse").on('shown.bs.collapse', function ()
{
var active = $(this).attr('id');
$.cookie('activePanelGroup', active);
});
$(".panel .panel-collapse").on('hidden.bs.collapse', function ()
{
$.removeCookie('activePanelGroup');
});
var last = $.cookie('activePanelGroup');
if (last != null)
{
//remove default collapse settings
$(".panel .panel-collapse").removeClass('in');
//show the account_last visible group
$("#" + last).addClass("in");
}
我宁愿使用 localStorage 而不是 cookies。
您只需要在本地存储上为与其 ID 关联的每个面板创建一个变量,您可以在其中存储面板的状态。
加载页面时,只需循环所有面板类对象,检查其在本地存储中的关联变量,并根据值应用适当的 类。
这将为显示的每个面板创建一个 cookie,并在面板隐藏时删除该 cookie。
$(".panel .panel-collapse").on('shown.bs.collapse', function ()
{
var active = $(this).attr('id');
$.cookie(active, "1");
});
$(".panel .panel-collapse").on('hidden.bs.collapse', function ()
{
var active = $(this).attr('id');
$.removeCookie(active);
});
因此,在加载文档时,我们会检查每个 cookie 并展开面板。
$(document.ready(function(){
var panels=$.cookie(); //get all cookies
for (var panel in panels){ //<-- panel is the name of the cookie
if ($("#"+panel).hasClass('panel-collapse')) // check if this is a panel
{
$("#"+panel).collapse("show");
}
}
});
使用本地存储
但是,正如有人建议的那样,使用 localStorage
可能是更好的选择。 localStorage
非常适合这个。
$(".panel .panel-collapse").on('shown.bs.collapse', function ()
{
var active = $(this).attr('id');
var panels= localStorage.panels === undefined ? new Array() : JSON.parse(localStorage.panels);
if ($.inArray(active,panels)==-1) //check that the element is not in the array
panels.push(active);
localStorage.panels=JSON.stringify(panels);
});
$(".panel .panel-collapse").on('hidden.bs.collapse', function ()
{
var active = $(this).attr('id');
var panels= localStorage.panels === undefined ? new Array() : JSON.parse(localStorage.panels);
var elementIndex=$.inArray(active,panels);
if (elementIndex!==-1) //check the array
{
panels.splice(elementIndex,1); //remove item from array
}
localStorage.panels=JSON.stringify(panels); //save array on localStorage
});
加载页面时,获取 localStorage 的值并显示面板。
$(document.ready(function(){
var panels=localStorage.panels === undefined ? new Array() : JSON.parse(localStorage.panels); //get all panels
for (var i in panels){ //<-- panel is the name of the cookie
if ($("#"+panels[i]).hasClass('panel-collapse')) // check if this is a panel
{
$("#"+panels[i]).collapse("show");
}
}
});
编辑:看到它工作:FIDDLE
您应该将活动面板保存在一个数组中并将其存储在 cookie 中,而不是一次只保存 1 个 id
。
你的JS应该是这样的:
var activePanels = []; // array for the active panels
$(".panel .panel-collapse").on('shown.bs.collapse', function ()
{
var active = $(this).attr('id');
activePanels.push(active); // store the active panel id into the array
$.cookie('activePanelGroup', activePanels); // add array to the cookie
console.log($.cookie('activePanelGroup')); // display current active panels stored in the cookie
});
$(".panel .panel-collapse").on('hidden.bs.collapse', function ()
{
var selectedPanel = $(this).attr('id');
var index = activePanels.indexOf(selectedPanel);
if (index > -1) // if id exists on the active panels array
activePanels.splice(index, 1); // remove it on the active panels array
$.cookie('activePanelGroup', activePanels); // add the updated active panels array to remove the old one
console.log($.cookie('activePanelGroup')); // display current active panels stored in the cookie
});
var aPanels = $.cookie('activePanelGroup'); // retrieve all active panels
if (aPanels != null)
{
//remove default collapse settings
$(".panel .panel-collapse").removeClass('in');
// put all active ids to array
var arr = aPanels.split(",");
// loop on each active panels
$.each( arr, function( key, value ) {
//show the account_last visible group
$("#" + value).addClass("in");
// store again the selected panels so it won't get reset on reload
activePanels.push(value);
$.cookie('activePanelGroup', activePanels);
});
}
您可以将设置放在单个 cookie 中(即以逗号分隔)并在打开-关闭时更新它。
openPanels = $.cookie('activePanelGroup').split(",");
查看您编辑的 JsFiddle 示例 here。
编辑
我同意克里斯的观点。我发现将所有值存储在单个 cookie 中是一种更优雅的解决方案,但是,我们应该记住单个 cookie size limitations。 (这因浏览器而异)。
<!-- when you have multiple levels of child-sections like this below - to hide/collapse or show and restore again -->
<!--here's how I kept track of their id's - ps. I have since removed the multiple -->
<!--tables but, it looked like this when I put this answer in -->
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
</div>
<div class="panel-body">
<!--TABLE 1-->
<table class="table table-condensed" style="border-collapse: collapse;">
<tbody class="component-grp">
<tr data-toggle="collapse" data-parent="#accordion" data-target="#compogrp@x" class="accordion-toggle">
<td colspan="10">
<div class="">
</div>
</td>
</tr>
<tr>
<td class="hiddenRow">
<div class="accordian-body panel-collapse collapse" id="compogrp@x">
<!--TABLE 2-->
<table class="table table-striped">
<thead>
<tr class="header">
<th></th>
<th>Position</th>
<th>shape</th>
</tr>
</thead>
<tbody class="component-row">
<tr data-toggle="collapse" data-target="#comp-@x" class="accordion-toggle collapsed">
<td>
</td>
</tr>
<tr>
<td colspan="10" class="hiddenRow">
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
让我提出一个额外的选择:如果您像我一样自定义了 bootstrap 面板示例并最终为手风琴设置了多个嵌套,那么假设您的折叠和扩展元素具有唯一的 ID (展开或折叠的面板),您可以捕获(依赖)点击事件来获取面板的 ID collapsing/expanding,无论它在嵌套中的位置有多深。
我自定义了Whosebug中的例子来实现这个;基本上,它在单击事件时获取展开面板的 ID,创建一个名为 id 的 cookie(var temp),如果面板折叠,稍后将用于将其删除。然后在页面刷新(或等)时循环遍历 cookie 以恢复手风琴状态。我必须指出,不建议将 cookie 用于此类规范。因此,您可以更改代码以使用 localStorage 或 Javascript 数组。希望这对某人有所帮助。
$(document).on('shown.bs.collapse', function (e) {
//whenever and wherever a panel is shown on any level of the nesting, save the id in a cookie
var active = $(e.target).attr('id')
var temp = active;
$.cookie(temp, active);
console.log("panel expanded: ");
});
$(document).on('hidden.bs.collapse', function (e) {
var temp = $(e.target).attr('id')
//whenever and wherever a panel is collapsed on any level of the nesting, remove the corresponding cookie
$.removeCookie(temp);
console.log("panel collapsed: ");
});
function restoreActiveAccordionGroup() {
var last = [];
last = $.cookie();
if (last) {
//remove default collapse settings from all panels
$("#accordion").removeClass('in');
for (var i in last) {
//restore the last visible panel group in all nested levels
$("#" + i).addClass("in");
}
}
}
我正在尝试确定如何使用 $.cookie 保存可折叠面板的折叠状态。
This 问题到目前为止很有帮助,但仍然缺少最终解决方案。
到目前为止我找到的任何解决方案都只保存了最后一个向下滚动的面板,因此当页面重新加载时,唯一保存的面板是最后一个。
我需要的是保存所有向下滚动的面板,而不是只保存一个面板。
Link 到 Github 上的 jCookie 插件。
Link 在 JSFiddle 上演示
更新
有人建议 LocalStorage 是更适合我要实现的目标的解决方案。如果您可以评论为什么以及什么是本地存储,将不胜感激。
更新 2
因为建议本地存储比使用 cookie 来解决这个问题更好。所选答案基于此。然而,正如 Robin 所提到的,在 HTTPS 站点上使用这种技术也有缺点。
HTML
<div class="panel panel-default">
<div data-toggle="collapse" data-target="#panel1" class="panel-heading collapsed">
<h4 class="panel-title">
<a> Panel 1 </a>
</h4>
</div>
<div id="panel1" class="panel-collapse collapse">
<div class="panel-body">
</div>
</div>
</div>
<div class="panel panel-default">
<div data-toggle="collapse" data-target="#panel2" class="panel-heading collapsed">
<h4 class="panel-title">
<a> Panel 2 </a>
</h4>
</div>
<div id="panel2" class="panel-collapse collapse">
<div class="panel-body">
</div>
</div>
</div>
<div class="panel panel-default">
<div data-toggle="collapse" data-target="#panel3" class="panel-heading collapsed">
<h4 class="panel-title">
<a> Panel 3 </a>
</h4>
</div>
<div id="panel3" class="panel-collapse collapse">
<div class="panel-body">
</div>
</div>
</div>
jQUERY
$(".panel .panel-collapse").on('shown.bs.collapse', function ()
{
var active = $(this).attr('id');
$.cookie('activePanelGroup', active);
});
$(".panel .panel-collapse").on('hidden.bs.collapse', function ()
{
$.removeCookie('activePanelGroup');
});
var last = $.cookie('activePanelGroup');
if (last != null)
{
//remove default collapse settings
$(".panel .panel-collapse").removeClass('in');
//show the account_last visible group
$("#" + last).addClass("in");
}
我宁愿使用 localStorage 而不是 cookies。
您只需要在本地存储上为与其 ID 关联的每个面板创建一个变量,您可以在其中存储面板的状态。
加载页面时,只需循环所有面板类对象,检查其在本地存储中的关联变量,并根据值应用适当的 类。
这将为显示的每个面板创建一个 cookie,并在面板隐藏时删除该 cookie。
$(".panel .panel-collapse").on('shown.bs.collapse', function ()
{
var active = $(this).attr('id');
$.cookie(active, "1");
});
$(".panel .panel-collapse").on('hidden.bs.collapse', function ()
{
var active = $(this).attr('id');
$.removeCookie(active);
});
因此,在加载文档时,我们会检查每个 cookie 并展开面板。
$(document.ready(function(){
var panels=$.cookie(); //get all cookies
for (var panel in panels){ //<-- panel is the name of the cookie
if ($("#"+panel).hasClass('panel-collapse')) // check if this is a panel
{
$("#"+panel).collapse("show");
}
}
});
使用本地存储
但是,正如有人建议的那样,使用 localStorage
可能是更好的选择。 localStorage
非常适合这个。
$(".panel .panel-collapse").on('shown.bs.collapse', function ()
{
var active = $(this).attr('id');
var panels= localStorage.panels === undefined ? new Array() : JSON.parse(localStorage.panels);
if ($.inArray(active,panels)==-1) //check that the element is not in the array
panels.push(active);
localStorage.panels=JSON.stringify(panels);
});
$(".panel .panel-collapse").on('hidden.bs.collapse', function ()
{
var active = $(this).attr('id');
var panels= localStorage.panels === undefined ? new Array() : JSON.parse(localStorage.panels);
var elementIndex=$.inArray(active,panels);
if (elementIndex!==-1) //check the array
{
panels.splice(elementIndex,1); //remove item from array
}
localStorage.panels=JSON.stringify(panels); //save array on localStorage
});
加载页面时,获取 localStorage 的值并显示面板。
$(document.ready(function(){
var panels=localStorage.panels === undefined ? new Array() : JSON.parse(localStorage.panels); //get all panels
for (var i in panels){ //<-- panel is the name of the cookie
if ($("#"+panels[i]).hasClass('panel-collapse')) // check if this is a panel
{
$("#"+panels[i]).collapse("show");
}
}
});
编辑:看到它工作:FIDDLE
您应该将活动面板保存在一个数组中并将其存储在 cookie 中,而不是一次只保存 1 个 id
。
你的JS应该是这样的:
var activePanels = []; // array for the active panels
$(".panel .panel-collapse").on('shown.bs.collapse', function ()
{
var active = $(this).attr('id');
activePanels.push(active); // store the active panel id into the array
$.cookie('activePanelGroup', activePanels); // add array to the cookie
console.log($.cookie('activePanelGroup')); // display current active panels stored in the cookie
});
$(".panel .panel-collapse").on('hidden.bs.collapse', function ()
{
var selectedPanel = $(this).attr('id');
var index = activePanels.indexOf(selectedPanel);
if (index > -1) // if id exists on the active panels array
activePanels.splice(index, 1); // remove it on the active panels array
$.cookie('activePanelGroup', activePanels); // add the updated active panels array to remove the old one
console.log($.cookie('activePanelGroup')); // display current active panels stored in the cookie
});
var aPanels = $.cookie('activePanelGroup'); // retrieve all active panels
if (aPanels != null)
{
//remove default collapse settings
$(".panel .panel-collapse").removeClass('in');
// put all active ids to array
var arr = aPanels.split(",");
// loop on each active panels
$.each( arr, function( key, value ) {
//show the account_last visible group
$("#" + value).addClass("in");
// store again the selected panels so it won't get reset on reload
activePanels.push(value);
$.cookie('activePanelGroup', activePanels);
});
}
您可以将设置放在单个 cookie 中(即以逗号分隔)并在打开-关闭时更新它。
openPanels = $.cookie('activePanelGroup').split(",");
查看您编辑的 JsFiddle 示例 here。
编辑
我同意克里斯的观点。我发现将所有值存储在单个 cookie 中是一种更优雅的解决方案,但是,我们应该记住单个 cookie size limitations。 (这因浏览器而异)。
<!-- when you have multiple levels of child-sections like this below - to hide/collapse or show and restore again -->
<!--here's how I kept track of their id's - ps. I have since removed the multiple -->
<!--tables but, it looked like this when I put this answer in -->
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
</div>
<div class="panel-body">
<!--TABLE 1-->
<table class="table table-condensed" style="border-collapse: collapse;">
<tbody class="component-grp">
<tr data-toggle="collapse" data-parent="#accordion" data-target="#compogrp@x" class="accordion-toggle">
<td colspan="10">
<div class="">
</div>
</td>
</tr>
<tr>
<td class="hiddenRow">
<div class="accordian-body panel-collapse collapse" id="compogrp@x">
<!--TABLE 2-->
<table class="table table-striped">
<thead>
<tr class="header">
<th></th>
<th>Position</th>
<th>shape</th>
</tr>
</thead>
<tbody class="component-row">
<tr data-toggle="collapse" data-target="#comp-@x" class="accordion-toggle collapsed">
<td>
</td>
</tr>
<tr>
<td colspan="10" class="hiddenRow">
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
让我提出一个额外的选择:如果您像我一样自定义了 bootstrap 面板示例并最终为手风琴设置了多个嵌套,那么假设您的折叠和扩展元素具有唯一的 ID (展开或折叠的面板),您可以捕获(依赖)点击事件来获取面板的 ID collapsing/expanding,无论它在嵌套中的位置有多深。
我自定义了Whosebug中的例子来实现这个;基本上,它在单击事件时获取展开面板的 ID,创建一个名为 id 的 cookie(var temp),如果面板折叠,稍后将用于将其删除。然后在页面刷新(或等)时循环遍历 cookie 以恢复手风琴状态。我必须指出,不建议将 cookie 用于此类规范。因此,您可以更改代码以使用 localStorage 或 Javascript 数组。希望这对某人有所帮助。
$(document).on('shown.bs.collapse', function (e) {
//whenever and wherever a panel is shown on any level of the nesting, save the id in a cookie
var active = $(e.target).attr('id')
var temp = active;
$.cookie(temp, active);
console.log("panel expanded: ");
});
$(document).on('hidden.bs.collapse', function (e) {
var temp = $(e.target).attr('id')
//whenever and wherever a panel is collapsed on any level of the nesting, remove the corresponding cookie
$.removeCookie(temp);
console.log("panel collapsed: ");
});
function restoreActiveAccordionGroup() {
var last = [];
last = $.cookie();
if (last) {
//remove default collapse settings from all panels
$("#accordion").removeClass('in');
for (var i in last) {
//restore the last visible panel group in all nested levels
$("#" + i).addClass("in");
}
}
}