设置元素的显示并设置 cookie 以使其在单击时隐藏

发布于 2024-12-11 09:15:39 字数 312 浏览 0 评论 0原文

我正在寻找一种简单的方法来隐藏元素并设置 cookie 以使其在单击时保持隐藏。

<div id="hide-me">I need to be hidden</div>

<div id="hiding">
 If I get clicked, #hide-me's display style goes from block to none.
 Now the next time this person visits again, #hide-me will be display:none.
</div>

I'm looking for a simple way to hide an element and set a cookie to keep it hidden on click.

<div id="hide-me">I need to be hidden</div>

<div id="hiding">
 If I get clicked, #hide-me's display style goes from block to none.
 Now the next time this person visits again, #hide-me will be display:none.
</div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

温柔戏命师 2024-12-18 09:15:39

示例

var COOKIE_NAME = "hideMeDisplay",
    hideMe = document.getElementById('hide-me'),
    cookie = getCookie(COOKIE_NAME),
    hideMeDisplay = cookie  ? cookie : hideMe.style.display,
    hiding = document.getElementById('hiding');

hiding.onclick = function() {
    setCookie(COOKIE_NAME, hideMeDisplay, 100);
    hideMe.style.display = hideMeDisplay === "block" ? "none" : "block";
    hideMeDisplay = hideMe.style.display;

}
hiding.onclick(); // trigger first click to set cookie

Example

var COOKIE_NAME = "hideMeDisplay",
    hideMe = document.getElementById('hide-me'),
    cookie = getCookie(COOKIE_NAME),
    hideMeDisplay = cookie  ? cookie : hideMe.style.display,
    hiding = document.getElementById('hiding');

hiding.onclick = function() {
    setCookie(COOKIE_NAME, hideMeDisplay, 100);
    hideMe.style.display = hideMeDisplay === "block" ? "none" : "block";
    hideMeDisplay = hideMe.style.display;

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