Bootstrap - 打开标签页

代码:

$('#myTab a[href="#profile"]').tab('show')
$('#myTab a:first').tab('show')
$('#myTab a:last').tab('show')
$('#myTab li:eq(2) a').tab('show')

首先我们要对元素设置点击事件。

添加点击事件的元素:


标签页我们需要打开的:

...
...
...
...

1.我们给两个父元素设置id,确保好找到。

$(document).ready(function() {

  $("#demo-dropdown a").click(function() {
    var href = $(this).attr("href");
    console.log(href);
    $("#tab-list li a[href= '" + href + "']" ).tab("show");

  });


});

你可能感兴趣的:(Bootstrap - 打开标签页)