1 Star 0 Fork 101

徐龙/bootStrap-addTabs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 3.75 KB
一键复制 编辑 原始数据 按行查看 历史
自由自在的小鱼 提交于 2016-03-01 07:51 . Update index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>ADBC</title>
<link rel="stylesheet" href="theme/css/bootstrap.min.css" type="text/css" media="screen" />
<link rel="stylesheet" href="theme/css/bootstrap-addtabs.css" type="text/css" media="screen" />
<script src="theme/js/jquery.min.js"></script>
<script src="theme/js/bootstrap.min.js"></script>
<script src="theme/js/bootstrap-addtabs.js"></script>
<!--[if lt IE 9]>
<script src="theme/js/html5shiv.min.js"></script>
<script src="theme/js/respond.min.js"></script>
<![endif]-->
<script type="text/javascript">
$(function(){
$('#tabs').addtabs({monitor:'.topbar'});
$('#save').click(function(){
Addtabs.add({
id: $(this).attr('addtabs'),
title: $(this).attr('title') ? $(this).attr('title') : $(this).html(),
content: Addtabs.options.content ? Addtabs.options.content : $(this).attr('content'),
url: $(this).attr('url'),
ajax: $(this).attr('ajax') ? true : false
})
});
})
</script>
</head>
<body>
<header class="topbar admin-header">
<div class="brand">
<strong>LOGO IN HERE</strong>
<small></small>
</div>
<div class="topbar-collapse">
<!--Button group-->
<div class="btn-group" role="group" aria-label="...">
<button type="button" class="btn btn-default" data-addtab="mail" url="/admin/mail"><i class="glyphicon glyphicon-envelope"></i>我的邮件</button>
<button type="button" class="btn btn-default" data-addtab="profile" url="/admin/profile"><i class="glyphicon glyphicon-user"></i>我的属性</button>
<button type="button" class="btn btn-default" data-addtab="message" url="/admin/message" content="指定内容"><i class="glyphicon glyphicon-bullhorn"></i>指定内容</button>
<button type="button" class="btn btn-default" data-addtab="setting" url="/admin/setting" title="指定标题"><i class="glyphicon glyphicon-cog"></i>指定标题</button>
<button type="button" class="btn btn-default" data-addtab="ajax" url="/admin/profiles" ajax='true'><i class="glyphicon glyphicon-user"></i>使用AJAX</button>
</div>
</div>
</header>
<div class="col-md-12">
<div id="tabs">
<!-- Nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#home" aria-controls="home" role="tab" data-toggle="tab">Home</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="home">
<button type="button" class="btn btn-default" addtabs="save" id="save" url="/admin/save">
<i class="glyphicon glyphicon-floppy-disk"></i>
SAVE
</button>
</div>
</div>
</div>
</div>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xulong2005/bootStrap-addTabs.git
[email protected]:xulong2005/bootStrap-addTabs.git
xulong2005
bootStrap-addTabs
bootStrap-addTabs
master

搜索帮助