| 123456789101112131415161718192021 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <h1>认识js</h1>
- <!-- 1. 认识js -->
- <!-- js需要写在script标签中 -->
- <!-- 一般script标签写在body底部 -->
- <script>
- alert("hello world");
- console.log("hello world");
- </script>
- </body>
- </html>
|