jQueryUI Tab - 按需选择 TabText
我需要一个函数来获取当前选定选项卡的文本。我可以使用事件获取选定的选项卡,但即使尚未引发选定的事件,我也需要获取文本。
这是我的事件脚本,
$( "#tabs" ).bind( "tabsselect", function(event, ui) {
_textOfTab=$(ui.tab).text();
});
如何查询当前所选选项卡的选项卡?
I need a function which will get the text of the currently selected tab. I can get the selected tab using events, but I need to get the text even if the selected event is not yet thrown.
Here's my event script,
$( "#tabs" ).bind( "tabsselect", function(event, ui) {
_textOfTab=$(ui.tab).text();
});
How can I just query the tabs for the currently selected one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所选选项卡的
上将有一个
ui-tabs-selected
类,您可以使用它来查找活动选项卡。您可以在此处进行测试。
The
<li>
of the selected tab will have aui-tabs-selected
class on it, you can use that to find the active tab.You can test it out here.