jquery tabs 可排序的 cookie 顺序
我想创建一个 cookie 来记住我的 jquery 选项卡的顺序。我该如何实现这一目标?我看到你也可以创建一个 cookie,但我真的不知道从哪里开始。
<script>
$(function() {
$( "#tabs" ).tabs().find( ".ui-tabs-nav" ).sortable({ axis: "x" });
});
</script>
<div id="tabs">
<ul>
<li><a href="#tabs-1">Nunc tincidunt</a></li>
<li><a href="#tabs-2">Proin dolor</a></li>
<li><a href="#tabs-3">Aenean lacinia</a></li>
</ul>
I would like to create a cookie that remembers the order of my jquery tabs. How do I achieve that? I saw that you can create a cookie as well but I really don't know where to begin.
<script>
$(function() {
$( "#tabs" ).tabs().find( ".ui-tabs-nav" ).sortable({ axis: "x" });
});
</script>
<div id="tabs">
<ul>
<li><a href="#tabs-1">Nunc tincidunt</a></li>
<li><a href="#tabs-2">Proin dolor</a></li>
<li><a href="#tabs-3">Aenean lacinia</a></li>
</ul>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我很抱歉,这可能不完全是您正在寻找的标记,但这是一个很好的开始!
看看我创建的这个例子:
JSFiddle - COOKIES 演示
(任何更改后刷新页面!!)
使用此 HTML:
下载此 jQuery COOKIES 插件 --> 这里!
这是我用于演示的 jQuery 脚本:
要了解如何处理 cookie,请安装 Firebug 和他的 Cookie 插件!
单击按钮并查看响应。
如有任何问题请发表评论!
I apologize, this is maybe not exactly the markup you were lookin for but is a great start!
LOOK AT THIS EXAMPLE I CREATED:
JSFiddle - COOKIES DEMO
(Refresh the page after any change!!)
Use for Ex this HTML:
DOWNLOAD THIS jQuery COOKIES plugin --> HERE!
And here is the jQuery script I used for the demo:
To see how cookies are handled, install Firebug and his Cookies plugin!
Click the buttons and see the response.
Leave a comment for any question!