如何使用 Jquery UI 设置默认选项卡
我使用 Jquery 和 Jquery UI 进行以下操作:
$(document).ready(function() {
$('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
});
现在,它会自动将第一个选项卡设置为文档加载时选择的默认选项卡。如何覆盖此选项并使第二个选项卡成为页面加载时默认选择的选项卡?
I'm using Jquery and Jquery UI with the following:
$(document).ready(function() {
$('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
});
Right now it automatically sets the first tabs as the default tab that is selected when the document loads. How do I override this and make the second tab the default selected tab when the page loads?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有关更多详细信息,请访问规范页面。
More details on the specifications page.
如果您碰巧使用
jQuery UI >= 1.9
,它的工作原理如下:有关 Tabs Widget API 页面的更多详细信息:http://api.jqueryui.com/tabs/#option-active
If you happen to be using
jQuery UI >= 1.9
, this is how it works:More details on the Tabs Widget API page: http://api.jqueryui.com/tabs/#option-active
我发现这个替代解决方案在某些情况下可能更可取:
http://www.markhneedham。 com/blog/2010/09/08/jquery-ui-tabs-changing-selected-tab/
I found this alternate solution which might be preferable in some situations:
http://www.markhneedham.com/blog/2010/09/08/jquery-ui-tabs-changing-selected-tab/