从 jQuery UI 选项卡中的文本链接选择最后一个选项卡
我在我的网站上的产品页面上使用 jQuery UI 选项卡。在某些页面上我有 2 个选项卡,在某些页面上有 3 个选项卡。我想从文本链接打开最后一个选项卡。 jquery tabs api 只是向您展示如果您知道选项卡索引(假设 2 打开第三个选项卡),如何转到特定选项卡。我尝试了下面的代码,但没有帮助。请指教。谢谢。
$("#productTabs").tabs();
var $tabs = $('#productTabs').tabs(); // first tab selected
$("a[href$='mylink']").click(function(event){
$tabs.tabs('select', -1); // switch to last tab
return false;
});
I'm using jQuery UI tabs for product pages on my website. On some pages I have 2 tabs and on some 3. I would like to open last tab from a text link. The jquery tabs api just shows you how to go a particular tab if you know the tab index(let's say 2 to open 3rd tab). I tried the code below but it didn't help. Please advise. Thanks.
$("#productTabs").tabs();
var $tabs = $('#productTabs').tabs(); // first tab selected
$("a[href$='mylink']").click(function(event){
$tabs.tabs('select', -1); // switch to last tab
return false;
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本上获取选项卡组的长度并减一以获得最后一个索引值。
Basically get the length of the tab group and subtract one to get the last index value.