JS基础_JS的HelloWorld
Posted 星辰郎周
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS基础_JS的HelloWorld相关的知识,希望对你有一定的参考价值。
1 <!DOCTYPE html>
2 <html>
3
4 <head>
5 <meta charset="UTF-8">
6 <title></title>
7 <!--
8 描述:JS代码需要编写到script标签中
9 -->
10 <script type="text/javascript">
11 //控制浏览器弹出一个警告框
12 alert("这是我的第一行JS代码");
13
14 //可以向body中输出一个内容
15 document.write("看我出不出来");
16
17 //向控制台输出一个内容
18 console.log("你猜我在哪里出来呢");
19 </script>
20 </head>
21
22 <body>
23 </body>
24
25 </html>
以上是关于JS基础_JS的HelloWorld的主要内容,如果未能解决你的问题,请参考以下文章