bootstrap实现tab选项卡切换
在项⽬中遇到要实现tab选项卡的关闭功能,项⽬中⽤的bootstrap框架,⽹上有很多插件,我这⾥只是简单的实现了tab选项卡的切换! <
<!DOCTYPE html>
<html lang="en">bootstrap项目
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css" rel="external nofollow" >
<title>产品制作</title>
</head>
<body>
<!--内容部分-->
<div class="qb-content-wrapper">
<div class="qb-content">
<!--当前位置-->
<div class="currentLocation clearfix">
<span class="pull-left">产品管理 > 产品制作</span>
<div class="nav-btn pull-right">
<input type="button" class="btn btn-info" value="桌⾯">
<input type="button" class="btn btn-info returnBtn" value="返回">
</div>
</div>
<!--主要内容-->
<div class="container-fluid">
<div class="row qb-content-wrapper qb-main-content">
<div class="col-md-12 col-xs-12">
<ul class="nav nav-tabs tabs" role="tablist">
<li role="presentation" class="tab-list active">
<a href="#home" rel="external nofollow" aria-controls="home" role="tab" data-toggle="tab">信息检索
<i class="fa fa-remove tab-close"></i></a>
</li>
<li role="presentation" class="tab-list"><a href="#profile" rel="external nofollow" rel="external nofollow" aria-controls="profile" role="tab" data-toggle="tab">产品制作 <i class="fa fa-remove tab-close"></i></a>
</li>
<li role="presentation" class="tab-list">
<a href="#home1" rel="external nofollow" aria-controls="home" role="tab" data-toggle="tab">信息检索1
<i class="fa fa-remove tab-close"></i></a>
</li>
<li role="presentation" class="tab-list"><a href="#profile" rel="external nofollow" rel="external nofollo
w" aria-controls="profile1" role="tab" data-toggle="tab">产品制作1 <i class="fa fa-remove tab-close"></i></a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="home">
信息检索
</div>
<div role="tabpanel" class="tab-pane" id="profile">
产品制作
</div>
<div role="tabpanel" class="tab-pane" id="home1">
信息检索
</div>
<div role="tabpanel" class="tab-pane" id="profile1">
产品制作
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script></script>
<script src="js/jquery-1.11.2-min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript">
$('.tab-close').on('click', function(ev) {
var ev=window.event||ev;
ev.stopPropagation();
//先判断当前要关闭的tab选项卡有没有active类,再判断当前选项卡是否最后⼀个,如果是则给前⼀个选项卡以及内容添加active,否则给下⼀个添加active类 var gParent=$(this).parent().parent(),
parent=$(this).parent();
if(gParent.hasClass('active')){
if(gParent.index()==gParent.length){
gParent.prev().addClass('active');
$(parent.attr('href')).prev().addClass('active');
}else{
<().addClass('active');
$(parent.attr('href')).next().addClass('active');
}
}
$(parent.attr('href')).remove();
});
</script>
</body>
</html>
如果⼤家还想深⼊学习,可以点击两个精彩的专题:
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论