jQuery 切换工具栏:隐藏和可见

发布于 2024-12-04 20:04:35 字数 589 浏览 0 评论 0原文

使用下面的代码时,工具栏在每个页面上都可见,无论它之前是否在任何其他页面上关闭。当在任何特定页面上时,用户可以打开或关闭它。

<script type="text/javascript">
jQuery(document).ready(function(){

    jQuery("#toolbar-trigger").click(function(){
        jQuery(this).next("#toolbar-spacer").slideToggle("slow");
    });
});

</script>

<div id="toolbar-trigger" class="arrow"></div>
<div id="toolbar-spacer" class="toggle_container">
    <div class="spacer">
        CONTENT
    </div>
</div>

如果用户选择隐藏工具栏,我希望工具栏在所有页面上保持隐藏状态。只有触发器应保持可见。

谢谢你!

when using the code below, the toolbar is visible on every page regardess whether it was previously closed on any other page. When on any particular page the user can open it or close it.

<script type="text/javascript">
jQuery(document).ready(function(){

    jQuery("#toolbar-trigger").click(function(){
        jQuery(this).next("#toolbar-spacer").slideToggle("slow");
    });
});

</script>

<div id="toolbar-trigger" class="arrow"></div>
<div id="toolbar-spacer" class="toggle_container">
    <div class="spacer">
        CONTENT
    </div>
</div>

I would like the toolbar to stay hidden on all pages if the user chooses to hide the toolbar. Only the trigger should remain visible.

Thank you!

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

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

发布评论

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

评论(1

故事和酒 2024-12-11 20:04:35

您可以将工具栏的状态存储在 cookie 中。由于 jQuery 本身不支持 cookie,因此您需要一个插件。阅读本教程可能会对您有所帮助。

You can store the state of the toolbar in a cookie. Since jQuery doesn't natively support cookies you' ll need a plugin for that. Read this tutorial it might help you.

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