2024-07-08 21:32:13 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>选择日期</title>
|
|
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
2024-07-09 10:05:32 +08:00
|
|
|
<link rel="stylesheet" href="styles.css">
|
2024-07-08 21:32:13 +08:00
|
|
|
</head>
|
2024-07-08 21:38:32 +08:00
|
|
|
<body background="./bg.png" style="background-size:100% 100%; background-attachment: fixed;">
|
2024-07-09 10:09:16 +08:00
|
|
|
<button class="closeB" id="closeButton">x</button>
|
2024-07-08 21:32:13 +08:00
|
|
|
<h3>你选择的日期为:</h3>
|
|
|
|
<div id="selectedDate">No date selected</div>
|
2024-07-09 10:05:32 +08:00
|
|
|
<script src="script.js"></script>
|
2024-07-08 21:32:13 +08:00
|
|
|
</body>
|
|
|
|
</html>
|