jQuery UI 选项卡选定索引
我试图弄清楚如何解决我想要选择以前活动的选项卡的问题。我一直在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
jnode - 选项卡内容的 jquery 对象。
更新:
try this:
jnode - jquery object for tab content.
Update: