jQuery UI 选项卡选定索引

发布于 2024-10-17 13:38:19 字数 252 浏览 6 评论 0原文

我试图弄清楚如何解决我想要选择以前活动的选项卡的问题。我一直在尝试使用 cookie 来存储选项卡索引。

但现在我的问题是,如何使用选项卡索引来操作指定选项卡索引中的内容?

例如,当您检索所选索引时,其他人可以做什么?

var $tabs = $('#example').tabs();
var selected = $tabs.tabs('option', 'selected'); // => 0

I am trying to figure out how to solve an issue where I want to select the previously active tab. I have been playing around with cookies to store the tab index.

But now my problem is, how can I use the tab index to manipulate content in the specified tab index?

for example what can someone do when you retrieve the selected index?

var $tabs = $('#example').tabs();
var selected = $tabs.tabs('option', 'selected'); // => 0

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

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

发布评论

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

评论(1

手心的海 2024-10-24 13:38:19

试试这个:

var jnode = $('#tabs').tabs("option", "panel");

jnode - 选项卡内容的 jquery 对象。

更新:

var $tabs = $('#example').tabs();
var selected = $tabs.tabs('option', 'selected'); // => 0

$('#example').tabs("option", "panel").find('.ui-tabs-panel').eq(selected);

try this:

var jnode = $('#tabs').tabs("option", "panel");

jnode - jquery object for tab content.

Update:

var $tabs = $('#example').tabs();
var selected = $tabs.tabs('option', 'selected'); // => 0

$('#example').tabs("option", "panel").find('.ui-tabs-panel').eq(selected);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文