jQueryUI Tab - 按需选择 TabText

发布于 2024-10-07 16:21:05 字数 241 浏览 3 评论 0原文

我需要一个函数来获取当前选定选项卡的文本。我可以使用事件获取选定的选项卡,但即使尚未引发选定的事件,我也需要获取文本。

这是我的事件脚本,

    $( "#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 技术交流群。

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

发布评论

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

评论(1

眼中杀气 2024-10-14 16:21:05

所选选项卡的

  • 上将有一个 ui-tabs-selected 类,您可以使用它来查找活动选项卡。
  • $("#tabs ul.ui-tabs-nav li.ui-tabs-selected").text()
    

    您可以在此处进行测试

    The <li> of the selected tab will have a ui-tabs-selected class on it, you can use that to find the active tab.

    $("#tabs ul.ui-tabs-nav li.ui-tabs-selected").text()
    

    You can test it out here.

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