Created
January 6, 2014 02:29
-
-
Save yanhua365/8277300 to your computer and use it in GitHub Desktop.
Bootstrap的Tab示例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="nav nav-tabs" id="myTab"> | |
<li class="active"><a href="#home">Home</a></li> | |
<li><a href="#profile">Profile</a></li> | |
<li><a href="#messages">Messages</a></li> | |
<li><a href="#settings">Settings</a></li> | |
</ul> | |
<div class="tab-content"> | |
<div class="tab-pane active" id="home">...</div> | |
<div class="tab-pane" id="profile">...</div> | |
<div class="tab-pane" id="messages">...</div> | |
<div class="tab-pane" id="settings">...</div> | |
</div> | |
<script> | |
$(function () { | |
$('#myTab a:last').tab('show');//初始化显示哪个tab | |
$('#myTab a').click(function (e) { | |
e.preventDefault();//阻止a链接的跳转行为 | |
$(this).tab('show');//显示当前选中的链接及关联的content | |
}) | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment