Movatterモバイル変換


[0]ホーム

URL:


Menu
×
See More 
Sign In
+1 Get Certified Upgrade Teachers Spaces Bootcamps Get Certified Upgrade Teachers Spaces Bootcamps
   ❮     
     ❯   

BootstrapJS Tab


JS Tab (tab.js)

Tabs are used to separate content into different panes where each pane is viewable one at a time.

For a tutorial about Tabs, read ourBootstrap Tabs/Pills Tutorial.


The Tab Plugin Classes

ClassDescriptionExample
.nav nav-tabsCreates navigation tabsTry it
.nav-justifiedMakes navigation tabs/pills equal widths of their parent, at screens wider than 768px. On smaller screens, the nav tabs are stackedTry it
.tab-contentTogether with .tab-pane and data-toggle="tab", it makes the tab toggleableTry it
.tab-paneTogether with .tab-content and data-toggle="tab", it makes the tab toggleableTry it

Via data-* Attributes

Adddata-toggle="tab" to each tab, and add a.tab-pane class with a unique ID for every tab and wrap them in a.tab-content class.

Example

<ul class="nav nav-tabs">
  <li class="active"><a data-toggle="tab" href="#home">Home</a></li>
  <li><a data-toggle="tab" href="#menu1">Menu 1</a></li>
</ul>

<div class="tab-content">
  <div id="home" class="tab-pane fade in active">
    <h3>HOME</h3>
    <p>Some content.</p>
  </div>
  <div id="menu1" class="tab-pane fade">
    <h3>Menu 1</h3>
    <p>Some content in menu 1.</p>
  </div>
</div>
Try it Yourself »


Via JavaScript

Enable manually with:

Example

// Select all tabs
$('.nav-tabs a').click(function(){
  $(this).tab('show');
})

// Select tab by name
$('.nav-tabs a[href="#home"]').tab('show')

// Select first tab
$('.nav-tabs a:first').tab('show')

// Select last tab
$('.nav-tabs a:last').tab('show')

// Select fourth tab (zero-based)
$('.nav-tabs li:eq(3) a').tab('show')
Try it Yourself »

Tab Options

None

Tab Methods

The following table lists all available tab methods.

MethodDescriptionTry it
.tab("show")Shows the tabTry it

Tab Events

The following table lists all available tab events.

EventDescriptionTry it
show.bs.tabOccurs when the tab is about to be shown.Try it
shown.bs.tabOccurs when the tab is fully shown (after CSS transitions have completed)Try it
hide.bs.tabOccurs when the tab is about to be hiddenTry it
hidden.bs.tabOccurs when the tab is fully hidden (after CSS transitions have completed)Try it

Tip: Use jQuery'sevent.target andevent.relatedTarget to get the active tab and the previous active tab:

Example

$('.nav-tabs a').on('shown.bs.tab', function(event){
  var x = $(event.target).text();         // active tab
  var y = $(event.relatedTarget).text();  // previous tab
});
Try it Yourself »


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning.
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness
of all content. While using W3Schools, you agree to have read and accepted ourterms of use,cookies andprivacy policy.

Copyright 1999-2026 by Refsnes Data. All Rights Reserved.W3Schools is Powered by W3.CSS.

-->
[8]ページ先頭

©2009-2026 Movatter.jp