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>
时间: 2024-11-13 09:14:53