基本语法
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script type="text/javascript">
alert("hello");
document.write("hello");
console.log("hello");
</script>
</head>
<body></body>
</html>
1. JS 注释
- 注释说明
- 要养成良好的编写注释的习惯,也可以通过注释来对代码进行一些简单的调试
2. 常用语法
- alert(“”); //弹窗输出
- document.write(“”); //页面写入
- console.log(“”); //该语句用来在控制台中输出一个日志
alert("hello");
document.write("hello");
console.log("hello");
3. 代码格式
- JS 中严格区分大小写
- JS 中每一条语句以分号(;)结尾
- 如果不写分号,浏览器会自动添加,但是会消耗一些系统资源
- 而且有些时候,浏览器会加错分号,所以在开发中分号必须写
- JS 中会忽略多个空格和换行,所以我们可以利用空格和换行进行格式化