Jquery 选项卡 Cookie

发布于 2024-09-04 23:07:23 字数 484 浏览 4 评论 0原文

我正在尝试使用 Jquery cookie 插件来记住最后选择的选项卡。

我似乎无法让它工作。除了 jquery lib 和 cookie 插件之外我还需要其他东西吗???

这是代码:

  <script type="text/javascript">
    $(document).ready(function() {
       $("#tabletabscampaigns > ul").tabs({ remote: true, cache: true });
$("#tabletabscampaigns").tabs({selected: 0, cookie: { expires: 30}  }); 
    });       
</script>

<div id="tabletabscampaigns" style="float:left; width:895px; margin-top:20px;">

I am trying to use the Jquery cookie plugin to remember the last selected tab.

I can't seem to get it to work.Do i need anything else apart from the jquery lib and cookie plugin???

This is the code:

  <script type="text/javascript">
    $(document).ready(function() {
       $("#tabletabscampaigns > ul").tabs({ remote: true, cache: true });
$("#tabletabscampaigns").tabs({selected: 0, cookie: { expires: 30}  }); 
    });       
</script>

<div id="tabletabscampaigns" style="float:left; width:895px; margin-top:20px;">

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

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

发布评论

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

评论(3

纸短情长 2024-09-11 23:07:23

假设您正在使用此选项卡插件,请确保您拥有正确的Cookie 插件

Assuming that you're using this Tabs plugin, make sure that you have the correct Cookie plugin.

も星光 2024-09-11 23:07:23

问题是,在您拥有的选项中: selected:0

默认情况下,即使使用 cookie,它也会始终显示此选项卡

The problem is that in the options you have: selected:0

By default it will always show this tab even with cookies

想念有你 2024-09-11 23:07:23

在插件文档中,它指出不要将 selected 与 cookie 插件一起使用。

in the plugin documention it states not to use selected with cookie plugin.

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