带有 cookie 的 jQuery 选项卡 - 如果 cookie 存在?
我有这个代码:
jQuery(document).ready(function($) {
$( "#tabs" ).tabs({
collapsible: true,
fx: { height: 'toggle', duration: 'fast'},
cookie: { expires: 30 }
});
});
我使用带有 cookie 集的 jQuery 选项卡。如果没有设置 cookie,我想隐藏选项卡。我安装了所需的 jquery.cookie 插件。
我的问题
如何检查选项卡 cookie 是否已设置?
I have this code:
jQuery(document).ready(function($) {
$( "#tabs" ).tabs({
collapsible: true,
fx: { height: 'toggle', duration: 'fast'},
cookie: { expires: 30 }
});
});
I use jQuery tabs with a cookie set. If no cookie is set I want to hide the tabs. I have the jquery.cookie plugin installed that was required.
My question
How can I check if the tabs cookie is set or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能用 cookie.js 中的 getter 方法来做到这一点吗:
类似
Couldn't you do it with the getter method from cookie.js:
Something like
您应该使用 set 和 get
编辑
设置 Cookie 的名称并使用 getter 和 setter
You shoud use set and get
EDIT
Set the name for the Cookie and use getter and setter