如何使用 jQuery UI 选项卡在选项卡式内容下方添加导航?
我正在使用 jQuery UI 选项卡作为带有使用默认功能的窗格的选项卡式界面。我想添加出现在 .ui-tabs DIV 之外的附加导航,这些导航只是包含在无序列表中的按钮(除了最顶部的选项卡式链接之外)。
有人能告诉我如何做到这一点吗?
I am using jQuery UI Tabs for a tabbed interface with panes that is using the default functionality. I would like to add additional navigation that appears outside of the .ui-tabs DIV that are just buttons contained inside an unordered list (in addition to the tabbed links at the very top).
Can someone tell me how to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用选项卡中的
select
方法来执行此操作API。添加无序列表的按钮。我使用
data
属性将按钮与选项卡关联起来:<前><代码>
;
将
click
事件处理程序绑定到这些按钮:这是一个工作示例:http://jsfiddle.net/5ZnYC/
You can do this using the
select
method in the tabs API.Add an unordered list of buttons. I'm using the
data
attribute to associate a button with a tab:Bind a
click
event handler to those buttons:Here's a working example: http://jsfiddle.net/5ZnYC/