如何使用 jQuery 隐藏 div 并使用 cookie 保持隐藏状态?
我试图隐藏一个名为 #video-toggle 的 div,并使用 cookie 在后续页面加载时保持该 div 的隐藏状态。我是一个完全的 jQuery 新手,我不知道我做错了什么。
当我点击指定链接时,会弹出警报,通知我 cookie 当前为空。未设置任何值。有人能引导我走向正确的方向吗?
jQuery(document).ready(function() {
jQuery('a#slick-slidetoggle').click(function() {
$.cookie('isHidden','true', { path: '/' });
alert( $.cookie('isHidden') );
return false;
});
var hidden = $.cookie('isHidden');
if (hidden == null) {
jQuery('#video-toggle').show();
}
});
谢谢。 :-)
I'm trying to hide a div named #video-toggle, and have that div remain hidden on subsequent page loads using a cookie. I'm a complete jQuery newbie and I have no idea what I've been doing wrong.
All that happens when I click on the designated link is the alert pops up informing me that the cookie is currently null. No value is being set. Anyone able to lead me in the right direction?
jQuery(document).ready(function() {
jQuery('a#slick-slidetoggle').click(function() {
$.cookie('isHidden','true', { path: '/' });
alert( $.cookie('isHidden') );
return false;
});
var hidden = $.cookie('isHidden');
if (hidden == null) {
jQuery('#video-toggle').show();
}
});
Thanks. :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你需要这个jquery插件:
http://plugins.jquery.com/project/Cookie
检查这个网站也是:链接
you need this jquery plugin:
http://plugins.jquery.com/project/Cookie
Check this site too: link
也许在设置 cookie 时尝试:
如果有效,则传递路径选项时存在问题。
让我知道你过得怎么样。
Maybe when setting your cookie try:
If that works then there is a problem with passing the path option.
Let me know how you get on.