使用 jQuery 在两个带有 cookies 的 div 之间切换
我有一个使用按钮(#button
)在两个 div(.grid
和 .list
)之间切换的功能。
HTML:
<a href="#" id="button">Change view</a>
<div class="grid">GRID</div>
<div class="list">LIST</div>
jQuery:
$('.list').hide();
$('.grid').show();
$('#button').toggle(function() {
$('.grid').hide();
$('.list').show();
return false;
}, function() {
$('.list').hide();
$('.grid').show();
return false;
});
如何添加 cookie 支持,以便在页面加载后保存并相应显示切换状态?当用户第一次加载页面时,应显示 .grid 视图。
我尝试了之前线程中的许多选项,但都失败了。
I have a function for toggling between two divs (.grid
and .list
) with a button (#button
).
HTML:
<a href="#" id="button">Change view</a>
<div class="grid">GRID</div>
<div class="list">LIST</div>
jQuery:
$('.list').hide();
$('.grid').show();
$('#button').toggle(function() {
$('.grid').hide();
$('.list').show();
return false;
}, function() {
$('.list').hide();
$('.grid').show();
return false;
});
How can I add cookies support, so that the toggle state is saved and displayed accordingly after page load? When the user loads the page for the first time .grid view shall be displayed.
I have tried many options from the previous threads, but all of them failed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需设置并获取 cookie 的值并相应地切换元素(小提琴: http://jsfiddle.net/bpcJd /1/):
Just set and get the value of a cookie and toggle the elements accordingly (fiddle: http://jsfiddle.net/bpcJd/1/):
如果你使用 jQuery
$.cookie
,类似这样的东西会起作用:演示。要测试它是否有效,请单击一次开关将其设置为网格,然后复制 URL 并打开一个新选项卡,网格应该是显示的布局。
If you use jQuery
$.cookie
, something like this would work:Demo. To test if it works click the switch once to set it to grid, then copy the URL and open a new tab, grid should be the shown layout.
如果你使用 jquery cookie 插件 你可以这样做:
在这里小提琴: http://jsfiddle.net/aXCSq/
这样第一次显示List,然后保存
".grid"的可见性
在饼干中If you use jquery cookie plugin you could do:
fiddle here: http://jsfiddle.net/aXCSq/
This display List the first time and then saves the visibility of
".grid"
in a cookie