jquery ui 选项卡中外部导航的活动类
我的 jquery ui 选项卡需要外部导航。 我创建了链接:
<a href="#fragment-1" id="pin1">
并添加了 js 代码:
$("#pin1").click(function() {$("#tabs").tabs( "select" , 0 );});
$("#pin2").click(function() {$("#tabs").tabs( "select" , 1 );});
不幸的是,现在链接没有活动类。是否可以使其像默认选项卡导航一样工作?
I needed extarnal navigation for my jquery ui tabs.
I created links:
<a href="#fragment-1" id="pin1">
and add js code:
$("#pin1").click(function() {$("#tabs").tabs( "select" , 0 );});
$("#pin2").click(function() {$("#tabs").tabs( "select" , 1 );});
Unfortunately now the links don't have active class. Is it possible to make it work like is in default tabs navigation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的意思是这样的: http://jsfiddle.net/petersendidit/4wQVD/3/
Do you mean something like this: http://jsfiddle.net/petersendidit/4wQVD/3/