!DOCTYPE htmlhtmlheadtitleTry v1.2 Bootstrap Online/titlelink href=/bootstrap/css/bootstrap.min.css rel=stylesheet
编程学习网为您整理以下代码实例,主要实现:Bootstrap Tab插件事件,希望可以帮到各位朋友。
<!DOCTYPE HTML>
<HTML>
<head>
<Title>Try v1.2 bootstrap Online</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>
<hr>
<p class = "active-tab"><strong>Active Tab</strong>: <span></span></p>
<p class = "prevIoUs-tab"><strong>PrevIoUs Tab</strong>: <span></span></p>
<hr>
<ul ID = "myTab" class = "nav nav-tabs">
<li class = "active">
<a href = "#home" data-toggle = "tab">
Tutorial Point Home
</a>
</li>
<li><a href = "#ios" data-toggle = "tab">iOS</a></li>
<li class = "dropdown">
<a href = "#" ID = "myTabDrop1" class = "dropdown-toggle" data-toggle = "dropdown">
Java
<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>Tutorials Point is a place for beginners in all technical areas.
This website covers most of the latest technologIEs and explains each of
the technology with simple examples. You also have a
<b>tryit</b> editor, wherein you can edit your code and try
out different possibilitIEs of the examples.</p>
</div>
<div class = "tab-pane fade" ID = "ios">
<p>iOS is a mobile operating system developed and distributed by
Apple Inc. Originally released in 2007 for the iPhone, iPod touch, and
Apple TV. iOS is derived from OS X, with which it shares the Darwin
foundation. iOS is Apple's mobile version of the OS X operating system
used on Apple computers.</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>
<script>
$(function(){
$('a[data-toggle = "tab"]').on('shown.bs.tab', function (e) {
// Get the name of active tab
var activeTab = $(e.target).text();
// Get the name of prevIoUs tab
var prevIoUsTab = $(e.relatedTarget).text();
$(".active-tab span").HTML(activeTab);
$(".prevIoUs-tab span").HTML(prevIoUsTab);
});
});
</script>
</body>
</HTML>
沃梦达教程
本文标题为:Bootstrap Tab插件事件


猜你喜欢
- D3.js数组API 1970-01-01
- Bootstrap表格行或单元格 1970-01-01
- Bootstrap创建下拉菜单 1970-01-01
- Bootstrap单选按钮 1970-01-01
- Bootstrap navbar-fixed-bottom类使用 1970-01-01
- js过滤所有特殊字符的实例代码 2022-10-16
- Bootstrap .btn-primary类 1970-01-01
- D3.js selectAll()用法 2022-07-13
- 原始CSS美化select下拉框option示例代码 2022-10-05
- Bootstrap .well类 1970-01-01