摘要:是否使用了最新版本的浏览器Excel文件格式是否正确网络连接是否正常趣味抽奖程序body {
注意:Excel文件格式要求:
必须包含"姓名"列支持的文件格式:.XLSX, .xls, .csv确保姓名不重复Q: 为什么上传文件后按钮仍然是灰色的?
A: 请检查Excel文件格式是否正确,确保包含"姓名"列。
Q: 抽奖结果如何查看?
A: 结果会直接显示在页面中央,每行显示5个中奖者。
Q: 中奖结果丢失怎么办?
A: 请及时点击"保存中奖结果"按钮保存结果,避免刷新页面。
Q: 可以重复抽取同一奖项吗?
A: 每个奖项只能抽取一次,如需重新抽奖,请刷新页面重新开始。
技术支持:
如遇到使用问题,请检查:
趣味抽奖程序
抽特等奖(3人)抽一等奖(10人)抽二等奖(20人)保存中奖结果let participants = ;let winners = {"特等奖": ,"一等奖": ,"二等奖": };document.getElementById('fileInput').addEventListener('change', handleFileSelect);function handleFileSelect(event) {const file = event.target.files[0];const reader = new FileReader;reader.onload = function(e) {const data = new Uint8Array(e.target.result);const workbook = XLSX.read(data, {type: 'array'});const firstSheet = workbook.Sheets[workbook.SheetNames[0]];participants = XLSX.utils.sheet_to_json(firstSheet);enableButtons;};reader.readAsArrayBuffer(file);}function enableButtons {document.querySelectorAll('.lottery-button').forEach(button => {button.disabled = false;});}function disableButtons {document.querySelectorAll('.lottery-button').forEach(button => {button.disabled = true;});}function displayWinners(prize, winners) {const resultElement = document.getElementById('result');resultElement.innerHTML = ''; // 清空现有内容// 创建奖项容器const container = document.createElement('div');// 添加奖项标题const titleDiv = document.createElement('div');titleDiv.className = 'prize-title';titleDiv.textContent = `${prize}中奖者:`;container.appendChild(titleDiv);// 创建网格容器const gridDiv = document.createElement('div');gridDiv.className = 'winners-grid';// 添加获奖者winners.forEach(name => {const winnerDiv = document.createElement('div');winnerDiv.className = 'winner-item';winnerDiv.textContent = name;gridDiv.appendChild(winnerDiv);});container.appendChild(gridDiv);resultElement.appendChild(container);}async function startLottery(prize, numWinners) {if (participants.length setTimeout(resolve, 100));}// 抽取获奖者const currentWinners = ;for (let i = 0; i arr.length > 0)) {alert('没有中奖者!');return;}const rows = ;Object.entries(winners).forEach(([prize, names]) => {names.forEach(name => {rows.push([prize, name]);});});const ws = XLSX.utils.aoa_to_sheet([['奖项', '姓名'], ...rows]);const wb = XLSX.utils.book_new;XLSX.utils.book_append_sheet(wb, ws, '中奖结果');XLSX.writeFile(wb, '中奖结果.xlsx');}来源:果冻柚柚
免责声明:本站系转载,并不代表本网赞同其观点和对其真实性负责。如涉及作品内容、版权和其它问题,请在30日内与本站联系,我们将在第一时间删除内容!