<!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> <link rel="stylesheet" href="styles.css"> </head> <body background="./bg.png" style="background-size:100% 100%; background-attachment: fixed;"> <button class="closeButton" id="closeButton">x</button> <h3>你选择的日期为:</h3> <div id="selectedDate">No date selected</div> <script src="script.js"></script> </body> </html>