jquery ui 选项卡,当特定选项卡处于活动状态时执行一些 css,选择

发布于 2024-12-02 17:48:52 字数 244 浏览 1 评论 0原文

当在 jquery ui 选项卡中选择(单击)特定选项卡时,我想更改一些样式(例如正文背景颜色)。

例如:

if (tab nr 2 is selected) { $(body).css('background', 'red') }
if (tab nr 3 is selected) { $(body).css('background', 'blue') }

我如何检查选择了哪个选项卡?

I would like to change some styling (for example body background color) when specific tab is selected (clicked) in jquery ui tabs.

Sth like:

if (tab nr 2 is selected) { $(body).css('background', 'red') }
if (tab nr 3 is selected) { $(body).css('background', 'blue') }

How can I check which tab is selected?

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

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

发布评论

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

评论(2

双马尾 2024-12-09 17:48:52
$('.ui-tabs-nav').bind('tabsselect', function(event, ui) {
     var index=ui.index;
     if(index===2){ 
        $(body).css('background', 'red')
     }
     else if(index===3){ 
        $(body).css('background', 'blue')
     }
 });

选项卡选择文档

选项卡事件文档

$('.ui-tabs-nav').bind('tabsselect', function(event, ui) {
     var index=ui.index;
     if(index===2){ 
        $(body).css('background', 'red')
     }
     else if(index===3){ 
        $(body).css('background', 'blue')
     }
 });

Tab select documentation

Tabs Events documenation

孤城病女 2024-12-09 17:48:52

查看文档,可以使用事件“enable”来跟踪这。

您也可以这样做:

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

(始终来自文档

一般来说,阅读文档,您会在那里找到答案。

Looking at the documentation, you can use the event "enable" to keep track of this.

You could also do as such:

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

(always from the documentation)

Generally speaking, read the documentation, you'll find your answer there.

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