jQuery UI 选项卡、选择/取消选择(折叠)事件
我正在使用 jQuery UI 1.8.5 选项卡插件,具有可折叠:真实配置。 我需要在选项卡折叠后调用一个函数来添加 css 类。有人知道怎么做吗?
I am using jQuery UI 1.8.5 tabs plugin, with collapsible : true configuration.
I need to call a function after a tab is collapsed to add a css class. Does anyone know how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以检查点击时是否存在 ui-tabs-selected 类。假设您使用标准标记:
这非常适合
select
< /a> 事件。You could check if the
ui-tabs-selected
class exists on click. Assuming you're using standard markup:This is perfect for the
select
event.show 事件 对此不起作用怎么办?因为你不知道哪一个被隐藏了?
也许甚至 select 事件 也可能是您想要的。
使用 'tabsselect' 事件:
What about the show event won't work for this? Because you don't know which one was hidden?
Maybe even the select event might be what you want.
using the 'tabsselect' event: