Jquery 选项卡 Cookie
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
假设您正在使用此选项卡插件,请确保您拥有正确的Cookie 插件。
Assuming that you're using this Tabs plugin, make sure that you have the correct Cookie plugin.
问题是,在您拥有的选项中: 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
在插件文档中,它指出不要将 selected 与 cookie 插件一起使用。
in the plugin documention it states not to use selected with cookie plugin.