如何在没有div切换功能的情况下使用jquery的语义选项卡?
我需要由 jQuery 的语义选项卡 (semtabs) 呈现的选项卡,但没有显示一个 div 并隐藏其他 div 的功能。
有没有一种简单的方法可以防止该功能发生?
视觉样式是几种 css 样式加上一些 JS 动态操作样式和属性的结果,这些样式和属性很难单独实现,这就是为什么我正在寻找一种使用 semtabs 但没有切换功能的方法。
它应该看起来像这样:
标签 http://img10.imageshack.us/img10/4029/picture1he.png
I need to have the tabs as rendered by jQuery's semantic tabs (semtabs) but without the functionality that shows one div and hides the others.
Is there a simple way to prevent that functionality to happen?
The visual style is the result of several css styles plus some JS dynamic manipulation of styles and properties that would be too hard to implement separately, that's why I'm looking for a way to use semtabs but without the switching feature.
It should look something like this:
tabs http://img10.imageshack.us/img10/4029/picture1he.png
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种选择是覆盖选项卡上的事件处理程序,以便它们不会触发。这将阻止选项卡切换。
One option would be to override the event handlers on the tabs so that they don't fire. That would prevent the tabs from switching.