js学习笔记1 -- HelloWorld
使用软件WebStorm
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello</title>
<script type="text/javascript">
// ① 控制浏览器弹出一个警告
// alert("这是我的第一行JS代码");
alert("HelloWorld!!!");
// ② 让计算机在页面中输出一个内容
// document.write()可以向**body**中输出一个内容网页
// document是整个页面
// 网页本质上也就是个文档document,用超文本标记语言,结合其他web技术写的
document.write("Hello, I am js.");
// ③ 向控制台输出一个内容
// console.log()的作用是向控制台输出一个内容
console.log("can you guess where am i come from?");
</script>
</head>
<body>
</body>
</html>
运行截图: