jQuery Tools 1.1.2,选项卡插件和历史记录插件

发布于 2024-09-04 20:55:34 字数 412 浏览 6 评论 0原文

我有一个关于历史插件和 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 技术交流群。

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

发布评论

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

评论(2

提笔书几行 2024-09-11 20:55:34

您需要启用历史插件才能使其工作:

$("ul.plan-tabs").tabs("div.plan-panes div.fane", { tabs: 'li', history: true });

您可以在此处的演示中看到它的工作原理。例如,这里是直接指向第三个选项卡的链接

You need to enable the history plugin for this to work:

$("ul.plan-tabs").tabs("div.plan-panes div.fane", { tabs: 'li', history: true });

You can see it working in their demo here. For example, here's a link directly to the third tab.

一抹苦笑 2024-09-11 20:55:34

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'.

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