如何使用 jQuery 隐藏 div 并使用 cookie 保持隐藏状态?

发布于 2024-10-24 19:06:32 字数 577 浏览 9 评论 0原文

我试图隐藏一个名为 #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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

黯淡〆 2024-10-31 19:06:32

你需要这个jquery插件:

http://plugins.jquery.com/project/Cookie

检查这个网站也是:链接

you need this jquery plugin:

http://plugins.jquery.com/project/Cookie

Check this site too: link

夢归不見 2024-10-31 19:06:32

也许在设置 cookie 时尝试:

$.cookie("isHidden","true");

如果有效,则传递路径选项时存在问题。

让我知道你过得怎么样。

Maybe when setting your cookie try:

$.cookie("isHidden","true");

If that works then there is a problem with passing the path option.

Let me know how you get on.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文