编程学习网为您整理以下代码实例,主要实现:Bootstrap Tab插件,希望可以帮到各位朋友。
<!DOCTYPE HTML>
<HTML>
<head>
<Title>bootstrap Example</Title>
<link href = "/bootstrap/CSS/bootstrap.min.CSS" rel = "stylesheet">
<script src = "/scripts/jquery.min.Js"></script>
<script src = "/bootstrap/Js/bootstrap.min.Js"></script>
</head>
<body>
<ul ID = "myTab" class = "nav nav-tabs">
<li class = "active">
<a href = "#home" data-toggle = "tab">
Home
</a>
</li>
<li><a href = "#quiz" data-toggle = "tab">Quiz</a></li>
<li class = "dropdown">
<a href = "#" ID = "myTabDrop1" class = "dropdown-toggle" data-toggle = "dropdown">
Tutorials
<b class = "caret"></b>
</a>
<ul class = "dropdown-menu" role = "menu" aria-labelledby = "myTabDrop1">
<li><a href = "#jmeter" tabindex = "-1" data-toggle = "tab">jmeter</a></li>
<li><a href = "#ejb" tabindex = "-1" data-toggle = "tab">ejb</a></li>
</ul>
</li>
</ul>
<div ID = "myTabContent" class = "tab-content">
<div class = "tab-pane fade in active" ID = "home">
<p>This is home page.</p>
</div>
<div class = "tab-pane fade" ID = "quiz">
<p>The following are the quizzes:</p>
</div>
<div class = "tab-pane fade" ID = "jmeter">
<p>jMeter is an Open Source testing software. It is 100% pure Java
application for load and performance testing.</p>
</div>
<div class = "tab-pane fade" ID = "ejb">
<p>Enterprise Java Beans (EJB) is a development architecture for
building highly scalable and robust enterprise level applications to be
deployed on J2EE compliant Application Server such as JBOSS, Web Logic etc.</p>
</div>
</div>
</body>
</HTML>
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!