加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stumanage.html 4.45 KB
一键复制 编辑 原始数据 按行查看 历史
jimi_fa 提交于 2018-07-12 21:27 . 创建仓库
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>学生管理</title>
<link rel="stylesheet" type="text/css" href="http://www.jq22.com/jquery/bootstrap-3.3.4.css">
<link href="css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<link href="css/navbar.css" rel="stylesheet">
<link rel="stylesheet" href="css/zy.form.css" />
<script src="js/ie-emulation-modes-warning.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.cookie.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/token.js"></script>
<script src="js/dizhi.js"></script>
<script src="js/Tabullettea.js"></script>
<script src="js/Jqueryplugs.js" ></script>
<script src="js/stumanage.js" ></script>
<script src="js/find.js" ></script>
</head>
<body>
<div class="container">
<!-- Static navbar -->
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">用户管理<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="stumanage.html">学生管理</a></li>
<li><a href="teamanage.html">教师管理</a></li>
<li><a href="#">管理员设置</a></li>
</ul>
</li>
<li class="dropdown">
<a href="trends.html" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">校园动态<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="trends.html" >动态列表</a></li>
<li><a href="newtrends.html">添加动态</a></li>
</ul>
</li>
<li><a href="lessons.html">课程管理</a></li>
<li class="dropdown">
<a href="text.html" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">消息<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="textlist.html">通知列表</a></li>
<li><a href="text.html">发送通知</a></li>
</ul>
</li>
<li><a href="pay.html">缴费情况</a></li>
<li><a href="chat.html">聊一聊管理</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="index.html">注销</a></li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container-fluid -->
</nav>
<div class="jumbotron">
<div class="container2">
<form>
学号:
<input type="text" id="number" name="number">&nbsp;&nbsp;
姓名:
<input type="text" id="name" name="name">&nbsp;
<input type="button" id="find" class='button' value="搜索">
</form><br/>
<div class="row">
<div class="col-sm-12">
<table class="table table-hover" id="table">
<thead>
<tr data-tabullet-map="id">
<th width="50" data-tabullet-map="_index" data-tabullet-readonly="true">No</th>
<th data-tabullet-map="studentNumber">学号</th>
<th data-tabullet-map="name">姓名</th>
<th data-tabullet-map="sex">性别</th>
<th data-tabullet-map="className">班级</th>
<th data-tabullet-map="idCard">身份证号</th>
<th data-tabullet-map="phone">联系电话</th>
<th width="50" data-tabullet-type="edit"></th>
<th width="50" data-tabullet-type="delete"></th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<script>window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')</script>
<script src="js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化