如何获取 JQuery UI 选项卡插件中默认加载的选项卡文本?
这是我在单击选项卡时获取选项卡文本的代码:
$('#tab').tabs({
fx: { opacity:'toggle', duration:300 },
select: function(event, ui) {
var text = $(ui.tab).text();
}
});
但是如何在创建时获取默认选定选项卡的文本
。例如:三个选项卡:
Tabs-Menu1 Tabs-Menu2 Tabs-Menu3
以及 Tabs-Menus1<加载选项卡时默认选择 /code> 。我想在加载选项卡时获取
Tabs-Menu1
选项卡的文本。
非常感谢!!
This is my code to get the tab's text when I click the tab:
$('#tab').tabs({
fx: { opacity:'toggle', duration:300 },
select: function(event, ui) {
var text = $(ui.tab).text();
}
});
But how can I get the default selected tab's text
when it created.E.g: Three tab:
Tabs-Menu1 Tabs-Menu2 Tabs-Menu3
And the Tabs-Menus1
was default selected when the tabs was loaded.And I want to get the Tabs-Menu1
tab's text at the tabs was loaded.
Thank you very much!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建选项卡时使用
create
运行回调函数:Use
create
to run a callback function when the tabs are created: