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.
35 lines
1.2 KiB
35 lines
1.2 KiB
1 month ago
|
<!DOCTYPE html>
|
||
|
<html lang="zh">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<audio src="background_music.mp3" autoplay loop ></audio>
|
||
|
<title>进阶模式</title>
|
||
|
<link rel="stylesheet" href="styles.css">
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.16.9/xlsx.full.min.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<h1>课堂点名系统 - 进阶模式</h1>
|
||
|
<input type="file" id="fileInput" accept=".xlsx" />
|
||
|
<button id="randomSelectButton" class="hidden">随机点名</button>
|
||
|
<button onclick="window.location.href='index.html'">返回主页</button>
|
||
|
<div id="studentInfo" class="hidden"></div>
|
||
|
<div id="feedback" class="hidden"></div>
|
||
|
<table id="rankTable" class="hidden">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>学号</th>
|
||
|
<th>姓名</th>
|
||
|
<th>积分</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody id="rankList">
|
||
|
<!-- 排行榜数据将填充在这里 -->
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
<script src="advancedMode.js"></script>
|
||
|
</body>
|
||
|
</html>
|