123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <!-- JS代码需要编写到script标签中 -->
- <script>
- /*
- 控制浏览器弹出一个警告框
- alert("小胖纸");
- */
- /*
- 让计算机在页面中输出一个内容
- document.write()可以向body中输出一个内容
- document.write("彩票中奖了不???");
- */
- /*
- 向控制台输出一个内容,用户不能直接查看到效果
- console.log()的作用是向控制台输出一个内容
- console.log("出来喝酒不???");
- */
-
- alert("小胖纸");
- document.write("彩票中奖了不???");
- console.log("出来喝酒不???");
-
-
- </script>
- </head>
- <body>
-
- </body>
- </html>
|