JavaScript 教程 - Hello World

Jinku Hu 2023年1月30日 2019年12月26日
  1. JavaScript Hello World
  2. 基本 JavaScript 語法規則
JavaScript 教程 - Hello World

在本教程中,我們將使用 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
Jinku Hu avatar Jinku Hu avatar

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