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.
24 lines
827 B
24 lines
827 B
<!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/css4.css">
|
|
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<label for="fileInput">选择点名表</label>
|
|
<input type="file" id="fileInput" accept=".xlsx, .xls" onchange="handleFileSelect(event)" />
|
|
<div id="output"></div>
|
|
<br>
|
|
<br>
|
|
<button class="button1" id="enterButton" onclick="location.href='4choice.html';">进入点名</button>
|
|
</div>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.17.5/xlsx.full.min.js"></script>
|
|
<script src="../js/js.1.js"></script>
|
|
|
|
</body>
|
|
</html> |