与普通模式共享积分

main
p4ut7fwj5 1 month ago
parent 7249d76ff8
commit 7369590f02

@ -0,0 +1,34 @@
<!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>
Loading…
Cancel
Save