如何以编程方式更改标签?

时间:2016-09-15 09:40:04

标签: javascript jquery tabs

我正在使用http://www.menucool.com/tabbed-content制作标签。  有没有办法按jquery/javascript更改标签?我试过了$("tab1").click();

为此创造了一个小提琴 - https://jsfiddle.net/6e3y9663/1/

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

演示:https://jsfiddle.net/6e3y9663/5/