我正在使用http://www.menucool.com/tabbed-content制作标签。
有没有办法按jquery/javascript
更改标签?我试过了$("tab1").click();
为此创造了一个小提琴 - https://jsfiddle.net/6e3y9663/1/
答案 0 :(得分:1)
使用所选课程
$('.tabs').find('li.selected').removeClass('selected');//reset the tab buttons
$('#desiredTab').parent().addClass('selected');//or $('li a[href="#tab1"]').parent().addClass('selected'); - select the desired tab header
id = $('#desiredTab').attr('href');
$(id).siblings().hide();//reset the tab content
$(id).show();//$('#tab1').show(); -show the desired tab content