Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找加载 jQuery UI 选项卡小部件而不默认加载“第一个选项卡”。
我尝试了以下操作,但仍显示第一个选项卡:
$('#tabs').tabs({ selected: -1 });
您可以将可折叠选项设置为true,将活动选项设置为false:
true
false
$("#tabs").tabs({ collapsible: true, active: false });