Skip to content

Commit dd80c46

Browse files
committed
Developer console
1 parent 3c0d40b commit dd80c46

File tree

2 files changed

+33
-32
lines changed

2 files changed

+33
-32
lines changed
+30-30
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,64 @@
1-
# Developer console
1+
# 開發者控制台
22

3-
Code is prone to errors. You will quite likely make errors... Oh, what am I talking about? You are *absolutely* going to make errors, at least if you're a human, not a [robot](https://en.wikipedia.org/wiki/Bender_(Futurama)).
3+
程式容易產生錯誤。你將可能也會寫出錯誤程式... 喔,我在說什麼?只要你是正常人類,你將 *一定會* 寫出錯誤程式,除非你是 [機器人 (robot)](https://en.wikipedia.org/wiki/Bender_(Futurama))
44

5-
But in the browser, users don't see errors by default. So, if something goes wrong in the script, we won't see what's broken and can't fix it.
5+
但瀏覽器之中,使用者預設看不到錯誤。所以腳本若有錯,我們看不到什麼壞了且無從修正。
66

7-
To see errors and get a lot of other useful information about scripts, "developer tools" have been embedded in browsers.
7+
為了看到腳本的錯誤和其他許多有用訊息,"開發者工具" 被內嵌於瀏覽器中。
88

9-
Most developers lean towards Chrome or Firefox for development because those browsers have the best developer tools. Other browsers also provide developer tools, sometimes with special features, but are usually playing "catch-up" to Chrome or Firefox. So most developers have a "favorite" browser and switch to others if a problem is browser-specific.
9+
大部分開發者傾向用 Chrome Firefox 開發,因為它們有最佳的開發者工具。其他瀏覽器也提供開發者工具,有時候甚至有特殊功能,但通常這些瀏覽器都還在 "趕上" Chrome Firefox。所以大多數的開發者會有自己 "最喜歡" 的瀏覽器,然後在問題只發生在特定瀏覽器上時才切換。
1010

11-
Developer tools are potent; they have many features. To start, we'll learn how to open them, look at errors, and run JavaScript commands.
11+
開發者工具強大且有很多功能。一開始我們將學習如果開啟它們、查看錯誤並執行 JavaScript 指令。
1212

1313
## Google Chrome
1414

15-
Open the page [bug.html](bug.html).
15+
打開頁面 [bug.html](bug.html)
1616

17-
There's an error in the JavaScript code on it. It's hidden from a regular visitor's eyes, so let's open developer tools to see it.
17+
裡面的 JavaScript 程式碼存在一個錯誤,但他被隱藏在一般使用者眼皮底下,所以現在來打開開發者工具看看這個錯誤吧。
1818

19-
Press `key:F12` or, if you're on Mac, then `key:Cmd+Opt+J`.
19+
按下 `key:F12`,若你使用 Mac 則用 `key:Cmd+Opt+J`
2020

21-
The developer tools will open on the Console tab by default.
21+
開發者工具將會預設開啟於控制台 (Console) 分頁。
2222

23-
It looks somewhat like this:
23+
看起來像這樣:
2424

2525
![chrome](chrome.png)
2626

27-
The exact look of developer tools depends on your version of Chrome. It changes from time to time but should be similar.
27+
開發者工具的具體樣貌取決於你的 Chrome 版本,它會隨著時間改變但應該都長差不多。
2828

29-
- Here we can see the red-colored error message. In this case, the script contains an unknown "lalala" command.
30-
- On the right, there is a clickable link to the source `bug.html:12` with the line number where the error has occurred.
29+
- 在這裡我們可以看到紅色標註的錯誤訊息,這個例子中,腳本內有一個未知的 "lalala" 指令。
30+
- 在右邊有一個可以點擊連至原始碼的連結 `bug.html:12`,伴隨著產生錯誤的程式行數。
3131

32-
Below the error message, there is a blue `>` symbol. It marks a "command line" where we can type JavaScript commands. Press `key:Enter` to run them (`key:Shift+Enter` to input multi-line commands).
32+
錯誤訊息底下,有一個藍色 `>` 符號,它代表著我們可以輸入 JavaScript 的 "命令行"。按下 `key:Enter` 來執行它們 (用 `key:Shift+Enter` 來輸入多行指令)。
3333

34-
Now we can see errors, and that's enough for a start. We'll come back to developer tools later and cover debugging more in-depth in the chapter <info:debugging-chrome>.
34+
現在我們可以看到錯誤就夠了,晚點會於章節 <info:debugging-chrome> 再回到開發者工具並深入探討除錯這件事。
3535

36+
## Firefox、Edge 與其他
3637

37-
## Firefox, Edge, and others
38+
多數其他瀏覽器使用 `key:F12` 打開開發者工具。
3839

39-
Most other browsers use `key:F12` to open developer tools.
40-
41-
The look & feel of them is quite similar. Once you know how to use one of these tools (you can start with Chrome), you can easily switch to another.
40+
它們的觀感都差不多,一旦你知道怎麼使用其中一種 (可以從 Chrome 開始),就可以輕鬆於其它之間切換。
4241

4342
## Safari
4443

45-
Safari (Mac browser, not supported by Windows/Linux) is a little bit special here. We need to enable the "Develop menu" first.
44+
Safari (Mac 瀏覽器,Windows/Linux 不支援) 有點不太一樣,我們需要先開啟 "開發者選單 (Develop menu)"。
4645

47-
Open Preferences and go to the "Advanced" pane. There's a checkbox at the bottom:
46+
打開偏好設定 (Preferences) 並至 "進階 (Advanced)" 面板,底部有一個勾選欄位:
4847

4948
![safari](safari.png)
5049

51-
Now `key:Cmd+Opt+C` can toggle the console. Also, note that the new top menu item named "Develop" has appeared. It has many commands and options.
50+
現在 `key:Cmd+Opt+C` 可以開啟控制台。同樣地,注意最上方出現一個新的選單名為 "開發 (Develop)",有著許多指令與選項。
5251

53-
```smart header="Multi-line input"
54-
Usually, when we put a line of code into the console, and then press `key:Enter`, it executes.
52+
```smart header="輸入多行"
53+
通常當我們輸入一行程式到控制台並按下 `key:Enter`,它就執行了。
5554
56-
To insert multiple lines, press `key:Shift+Enter`. This way one can enter long fragments of JavaScript code.
55+
要插入多行程式,按下 `key:Shift+Enter`,這樣就可以輸入長片段的 JavaScript 程式。
5756
```
5857

59-
## Summary
58+
## 總結
59+
60+
- 開發者工具允許我們看到錯誤、執行指令、查看變數 (variables) 與更多其它事。
61+
- 大多數 Windows 的瀏覽器可以經由按下 `key:F12` 開啟。Mac 上的 Chrome 需要 `key:Cmd+Opt+J`;Safari 要用 `key:Cmd+Opt+C` (需先啟用)。
6062

61-
- Developer tools allow us to see errors, run commands, examine variables, and much more.
62-
- They can be opened with `key:F12` for most browsers on Windows. Chrome for Mac needs `key:Cmd+Opt+J`, Safari: `key:Cmd+Opt+C` (need to enable first).
63+
現在我們準備好環境了,下一章開始我們將來闡述 JavaScript。
6364

64-
Now we have the environment ready. In the next section, we'll get down to JavaScript.

1-js/01-getting-started/index.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
# An introduction
1+
# 介紹
2+
3+
介紹 JavaScript 語言和開發環境。
24

3-
About the JavaScript language and the environment to develop with it.

0 commit comments

Comments
 (0)