JavaScript 教程 - Hello World
Jinku Hu
2023年1月30日
2019年12月26日
在本教程中,我们将使用 JavaScript 做一个简单的 Hello World
程序,作为 JavaScript 教程的起点。
JavaScript Hello World
<!DOCTYPE HTML>
<html>
<body>
<p>JavaScript Tutorial</p>
<script>
alert( 'Hello, world!' );
</script>
</body>
</html>
<script>
alert( 'Hello, world!' );
</script>
当我们将 JavaScript 嵌入网页时,我们总是必须将下面这句话嵌入到 script 标签 <script>...</script>
中。
alert( 'Hello, world!' );
它只是带有括号内 Hello World!
信息的警报,语句以分号结尾。
如果将上面的代码保存到名为 helloworld.html
的文件中,然后在浏览器中查看它,则会出现一个弹出框,显示 Hello world!
。
基本 JavaScript 语法规则
在继续学习 JavaScript 之前,我们应该了解该脚本语言的一些基本语法规则。
- JavaScript 区分大小写。对于变量和函数均有效。
- 每个语句以分号结尾。
Author: Jinku Hu
Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.
LinkedIn