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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< title > 随机点名器< / title >
<!-- 引入xlsx库, 用于处理Excel文件 -->
< script src = "https://cdn.jsdelivr.net/npm/xlsx/dist/xlsx.full.min.js" > < / script >
<!-- 引入jQuery库 -->
< script src = "https://code.jquery.com/jquery-3.6.0.min.js" > < / script >
<!-- 引入CSS文件 -->
< link rel = "stylesheet" href = "style.css" >
< / head >
< body >
< div id = "topBanner" > 传奇Debug王GPT's随机抽签大挑战< / div >
<!-- 上传容器 -->
< div class = "upload-container" >
<!-- 上传按钮,初始文本为“请导入名单” -->
< label for = "file-upload" class = "upload-button" > 导入受害者名单< / label >
<!-- 文件输入元素, 接受Excel文件, 初始隐藏 -->
< input type = "file" id = "file-upload" accept = ".xlsx, .xls" style = "display: none;" >
<!-- 用于显示文件名的span元素 -->
< span id = "file-name" > < / span >
< / div >
< div id = "interface" >
< div id = "nameDisplay" > 【幸运观众】< / div >
< button onclick = "clickButton(this)" > 开始< / button >
< / div >
< div id = "leftText" class = "custom-text" > 没逝的 下辈子被点到注意就好< / div >
< div id = "rightText" class = "custom-text" > 作者:杨燕生 吴哲昊< / div >
< script src = "script.js" > < / script >
< / body >
< / html >