提问人:baxi 提问时间:1/20/2022 更新时间:1/20/2022 访问量:46
Jquery 选项卡未显示选定的第一个子项
Jquery tab not showing first child selected
问:
我无法使用 jquery 选项卡选择第一个子项。
$( function() {
$( "#twocoltabs" ).tabs();
$( "#twocoltabs" ).tabs( "option", "selected", 0 );
$( "#twocoltabs" ).tabs( "option", "disabled", [1] );
});
没有任何效果
$( function() {
$( "#twocoltabs" ).tabs();
});
甚至此脚本也会显示所选的第二个子项。
$('#twocoltabs li:first-child').addClass('active');
这仅显示所选的选项卡名称,而不是内容,如果我添加此选项卡名称,则选择两个选项卡名称。
答: 暂无答案
评论
[<>]
$( "#twocoltabs" ).tabs( "option", "selected", 0 )
$( "#twocoltabs" ).tabs( "option", "active", 1 )