| 123456789101112131415161718 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>测试页面</title>
- </head>
- <body>
- <h1>测试</h1>
- <div id="test"></div>
- <script>
- console.log("Script loaded");
- document.addEventListener('DOMContentLoaded', function() {
- console.log("DOM loaded");
- document.getElementById('test').textContent = "JavaScript 正常工作!";
- });
- </script>
- </body>
- </html>
|