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.

30 lines
900 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>积分查看</title>
<link rel="stylesheet" href="style_4.css">
</head>
<body>
<div class="background-container">
<div class="firstcontainer">
<div class="getexcel">
<div class="text" onclick="triggerDownload()">点击查看积分</div>
</div>
</div>
</div>
<script>
function triggerDownload() {
// 这里只是一个模拟函数,实际上并不会下载文件
// 如果您有文件的 URL可以在这里触发下载
// 例如window.location.href = 'path/to/your/file.xlsx';
alert('文件将在下载中打开(模拟提示)');
}
</script>
</body>
</html>