jquery ui 选项卡,当特定选项卡处于活动状态时执行一些 css,选择
当在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
选项卡选择文档
选项卡事件文档
Tab select documentation
Tabs Events documenation
查看文档,可以使用事件“enable”来跟踪这。
您也可以这样做:
(始终来自文档)
一般来说,阅读文档,您会在那里找到答案。
Looking at the documentation, you can use the event "enable" to keep track of this.
You could also do as such:
(always from the documentation)
Generally speaking, read the documentation, you'll find your answer there.