Jquery 选项卡脚本

发布于 2024-10-27 12:08:43 字数 581 浏览 0 评论 0原文


我想制作一个网站,您可以在其中切换选项卡以显示或隐藏。我有这个代码。

var a = '0';
        b = '0';
        c = '0';
    $(function(){
        $('#googleOn').click(function(){
            var a = '1';
                set = a + b + c;
            $.cookie('settings', set);
            alert($.cookie('settings'));
        });
        $('#googleOff').click(function(){
            var a = '0';
                set = a + b + c;
            $.cookie('settings', set);
            alert($.cookie('settings'));
        })
    });

任何人都知道如何使代码更通用,这样我就不必为每个选项卡编写这段代码?

干杯

I want to make a website where you can toggle tabs to show or hide. I have this code.

var a = '0';
        b = '0';
        c = '0';
    $(function(){
        $('#googleOn').click(function(){
            var a = '1';
                set = a + b + c;
            $.cookie('settings', set);
            alert($.cookie('settings'));
        });
        $('#googleOff').click(function(){
            var a = '0';
                set = a + b + c;
            $.cookie('settings', set);
            alert($.cookie('settings'));
        })
    });

Anyone has an idea how to make the code more general, so that i don't have to write this piece for every tab?

cheers

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

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

发布评论

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

评论(1

友欢 2024-11-03 12:08:43

有很多 jquery 选项卡脚本可供选择。这里只是一个参考: http://jqueryui.com/demos/tabs/
如果您使用 cookie 来记住选择了哪个选项卡,则最好对选项卡链接使用哈希值,并在单击每个选项卡时将其添加到 URL。

There are plenty of jquery tab scripts to choose from. Here is just one reference: http://jqueryui.com/demos/tabs/
If you are using cookies to remember what tab is selected, it may be better to use a hash value for the tab links and ad this to the URL when each tab is clicked.

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