You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.4 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="../css/css1.css">
<link rel="stylesheet" href="../css/css8.css">
</head>
<body>
<div class="box">
<h2>积分表</h2>
<div class="search-container">
<input type="text" id="searchInput" placeholder="按学号或姓名搜索">
<button onclick="search()">搜索</button>
</div>
<table id="scoreTable">
<thead>
<tr>
<th>学号</th>
<th>姓名</th>
<th>积分</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<div class="pagination" id="pagination"></div>
</div>
<script src="../js/js7.js"></script>
</body>
</html>