jQuery Tools 1.1.2,选项卡插件和历史记录插件
我有一个关于历史插件和 jQuery Tools v. 1.1.2 的问题。我目前使用选项卡插件,并且非常希望拥有某种历史记录功能。我需要这个,以便我可以直接链接到我的选项卡之一。 我只使用 jQuery Tools 1.1.2 版本,因为 1.2.0 版本与我的一些其他 javascript 冲突。这意味着我需要能够使用 1.1.2 版本的工具直接链接到我的选项卡。
现在我的脚本看起来像这样:
$("ul.plan-tabs").tabs("div.plan-panes div.fane", { tabs: 'li'});
但我找不到任何方法直接链接到我的选项卡。无论 id(#) 我输入 URL,我总是会得到第一个选项卡:(
有人可以帮忙吗?
提前非常感谢
。/Kim
I have a question regarding the history plugin and jQuery Tools v. 1.1.2. I currently use the tabs plugin, and would very much like to have some kind of history-functionality. I need this so that I can link directly to one of my tabs.
I do only work with version 1.1.2 of jQuery Tools, because the 1.2.0 version conflicts with some of my other javascript. This means that I need to be able to link directly to my tabs with version 1.1.2 of Tools.
Right now my script looks like this:
$("ul.plan-tabs").tabs("div.plan-panes div.fane", { tabs: 'li'});
But I can't find any way to link directly to my tabs. Nomatter wich id(#) I puts in my URL, I always gets the first tab :(
Can anyone help?
Thanks a lot in advance.
/Kim
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要启用历史插件才能使其工作:
您可以在此处的演示中看到它的工作原理。例如,这里是直接指向第三个选项卡的链接。
You need to enable the history plugin for this to work:
You can see it working in their demo here. For example, here's a link directly to the third tab.
jQuery Tools 中存在一个错误(至少在版本 1.2.5 中,也可能在早期版本中),如果您设置了“选项卡”,则该错误会阻止历史记录插件(或者实际上整个选项卡功能)工作任何东西的选项,即使是默认的。我还在等待修复,已经在他们的支持论坛上提到过。
因此,目前使用历史记录插件的唯一有效方法似乎是不设置
tabs: 'li'
。There is a bug in jQuery Tools (at least in version 1.2.5, probably in earlier versions, too) which prevents the history plugin (or, in fact, the entire tab functionality) from working if you’ve set the “tabs” option to anything, even if default. I’m yet waiting for a fix, have already mentioned it on their support forums.
So, currently the only working way to use the history plugin seems to be not to set
tabs: 'li'
.