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

This file contains ambiguous Unicode characters!

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">
<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>