Skip to content

Commit dc6a7fb

Browse files
lenchen1112ArvinH
andauthored
Interaction: alert, prompt, confirm (#25)
* feat: Translation of "Interaction: alert, prompt, confirm" * doc: modify texting of `1-js/02-first-steps/09-alert-prompt-confirm/article.md` Co-Authored-By: ArvinH <[email protected]> * docs: modify texting of `1-js/02-first-steps/09-alert-prompt-confirm/article.md` Co-Authored-By: ArvinH <[email protected]> * docs: modify text of `1-js/02-first-steps/09-alert-prompt-confirm/article.md` Co-Authored-By: ArvinH <[email protected]>
1 parent 252e86c commit dc6a7fb

File tree

3 files changed

+41
-38
lines changed

3 files changed

+41
-38
lines changed

1-js/02-first-steps/09-alert-prompt-confirm/1-simple-page/solution.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
JavaScript-code:
1+
JavaScript 程式碼:
22

33
```js demo run
44
let name = prompt("What is your name?", "");
55
alert(name);
66
```
77

8-
The full page:
8+
整個網頁原始碼:
99

1010
```html
1111
<!DOCTYPE html>
@@ -22,3 +22,4 @@ The full page:
2222
</body>
2323
</html>
2424
```
25+

1-js/02-first-steps/09-alert-prompt-confirm/1-simple-page/task.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ importance: 4
22

33
---
44

5-
# A simple page
5+
# 簡單的頁面
66

7-
Create a web-page that asks for a name and outputs it.
7+
建立一個網頁,要求輸入一個名字並輸出它。
88

99
[demo]
10+

1-js/02-first-steps/09-alert-prompt-confirm/article.md

+35-34
Original file line numberDiff line numberDiff line change
@@ -1,109 +1,110 @@
1-
# Interaction: alert, prompt, confirm
1+
# 互動: alert, prompt, confirm
22

3-
In this part of the tutorial we cover JavaScript language "as is", without environment-specific tweaks.
3+
此部分的教程涵蓋 "原本" 的 JavaScript,不需對環境做特別調整。
44

5-
But we'll still be using the browser as our demo environment, so we should know at least a few of its user-interface functions. In this chapter, we'll get familiar with the browser functions `alert`, `prompt` and `confirm`.
5+
但因為我們將使用瀏覽器做為演示環境,所以我們應該至少知道一些跟使用者互動的函式。在本章,我們將會對 `alert``prompt` `confirm` 瀏覽器函式更為熟悉。
66

77
## alert
88

9-
Syntax:
9+
語法:
1010

1111
```js
1212
alert(message);
1313
```
1414

15-
This shows a message and pauses script execution until the user presses "OK".
15+
會顯示一段訊息並中斷腳本執行直到使用者按下 "OK"
1616

17-
For example:
17+
例如:
1818

1919
```js run
2020
alert("Hello");
2121
```
2222

23-
The mini-window with the message is called a *modal window*. The word "modal" means that the visitor can't interact with the rest of the page, press other buttons, etc. until they have dealt with the window. In this case -- until they press "OK".
23+
該顯示訊息的迷你窗口稱之為 *模態視窗 (modal window*。"模態 (modal)" 這個字代表使用者不能與頁面其他部分互動或按其他按鈕等,直到他們處理了這個視窗為止,在此處為 -- 直到它們按下 "OK"
2424

2525
## prompt
2626

27-
The function `prompt` accepts two arguments:
27+
函式 `prompt` 接收兩個參數:
2828

2929
```js no-beautify
3030
result = prompt(title, [default]);
3131
```
3232

33-
It shows a modal window with a text message, an input field for the visitor, and the buttons OK/Cancel.
33+
會顯示一個帶有文字訊息的模態視窗,並有給訪問者輸入的欄位和 OK/Cancel 的按鈕。
3434

3535
`title`
36-
: The text to show the visitor.
36+
: 顯示予使用者的文字。
3737

3838
`default`
39-
: An optional second parameter, the initial value for the input field.
39+
: 可選的第二個參數,為輸入欄位的初始值。
4040

41-
The visitor may type something in the prompt input field and press OK. Or they can cancel the input by pressing Cancel or hitting the `key:Esc` key.
41+
訪問者可在 prompt 輸入欄位寫些東西然後按下 OK。或者可藉由按下 Cancel `key:Esc` 按鍵取消輸入。
4242

43-
The call to `prompt` returns the text from the input field or `null` if the input was canceled.
43+
呼叫 `prompt` 後會回傳輸入欄位的文字,或輸入被取消時則回傳 `null`
4444

45-
For instance:
45+
舉個例:
4646

4747
```js run
4848
let age = prompt('How old are you?', 100);
4949

5050
alert(`You are ${age} years old!`); // You are 100 years old!
5151
```
5252

53-
````warn header="In IE: always supply a `default`"
54-
The second parameter is optional, but if we don't supply it, Internet Explorer will insert the text `"undefined"` into the prompt.
53+
````warn header=" IE:總是給個 `default`"
54+
第二個參數是可選的,但如果我們沒給,Internet Explorer 會把 `"undefined"` 這個文字插入到 prompt 內。
5555

56-
Run this code in Internet Explorer to see:
56+
Internet Explorer 執行此程式碼來看看:
5757

5858
```js run
5959
let test = prompt("Test");
6060
```
6161

62-
So, for prompts to look good in IE, we recommend always providing the second argument:
62+
所以為了讓 IE 內的 prompt 看起來沒問題,我們建議總是提供第二個引數:
6363

6464
```js run
65-
let test = prompt("Test", ''); // <-- for IE
65+
let test = prompt("Test", ''); // <-- 為了 IE
6666
```
6767
````
6868
6969
## confirm
7070
71-
The syntax:
71+
語法為:
7272
7373
```js
7474
result = confirm(question);
7575
```
7676
77-
The function `confirm` shows a modal window with a `question` and two buttons: OK and Cancel.
77+
函式 `confirm` 顯示一個模態視窗,包含一個 `問題` 與兩個按鈕:OK Cancel
7878
79-
The result is `true` if OK is pressed and `false` otherwise.
79+
若按下 OK 回傳結果是 `true` 否則為 `false`
8080
81-
For example:
81+
例如:
8282
8383
```js run
8484
let isBoss = confirm("Are you the boss?");
8585
86-
alert( isBoss ); // true if OK is pressed
86+
alert( isBoss ); // 若按下 OK 則為 true
8787
```
8888
89-
## Summary
89+
## 總結
9090
91-
We covered 3 browser-specific functions to interact with visitors:
91+
我們介紹三種瀏覽器相關的函式用來和訪問者互動:
9292
9393
`alert`
94-
: shows a message.
94+
: 顯示訊息。
9595
9696
`prompt`
97-
: shows a message asking the user to input text. It returns the text or, if Cancel button or `key:Esc` is clicked, `null`.
97+
: 顯示訊息並要求使用者輸入文字並回傳該文字,若按下 Cancel 按鈕或 `key:Esc` 鍵時,則回傳 `null`
9898
9999
`confirm`
100-
: shows a message and waits for the user to press "OK" or "Cancel". It returns `true` for OK and `false` for Cancel/`key:Esc`.
100+
: 顯示訊息並等待使用者按下 "OK" "Cancel",OK 時回傳 `true`Cancel/`key:Esc` 時回傳 `false`。
101101
102-
All these methods are modal: they pause script execution and don't allow the visitor to interact with the rest of the page until the window has been dismissed.
102+
這些方法都是模態:它們暫停腳本執行並讓訪問者無法和頁面其餘部分互動,直到視窗被關掉為止。
103103
104-
There are two limitations shared by all the methods above:
104+
以上這些方法都有兩個限制:
105105
106-
1. The exact location of the modal window is determined by the browser. Usually, it's in the center.
107-
2. The exact look of the window also depends on the browser. We can't modify it.
106+
1. 模態視窗確切的位置是由瀏覽器決定的,通常會是在中間。
107+
2. 視窗確切的外觀也是由瀏覽器決定的,我們無法修改。
108+
109+
這就是簡單的代價,有其它顯示更好視窗和與使用者互動更為豐富的方法,但若不需要太多 "花俏華麗" 的介面,這些方法已經夠用了。
108110
109-
That is the price for simplicity. There are other ways to show nicer windows and richer interaction with the visitor, but if "bells and whistles" do not matter much, these methods work just fine.

0 commit comments

Comments
 (0)