This commit is contained in:
Ilya Kantor 2017-03-21 17:14:05 +03:00
parent ab9ab64bd5
commit 97c8f22bbb
289 changed files with 195 additions and 172 deletions

View file

@ -0,0 +1,27 @@
JavaScript-code:
```js demo run
let name = prompt("What is your name?", "");
alert( name );
```
The full page:
```html
<!DOCTYPE html>
<html>
<body>
<script>
'use strict';
let name = prompt("What is your name?", "");
alert( name );
</script>
</body>
</html>
```

View file

@ -0,0 +1,10 @@
importance: 4
---
# A simple page
Create a web-page which asks for a name and outputs it.
[demo]

View file

@ -0,0 +1,109 @@
# Interaction: alert, prompt, confirm
This part of the tutorial aims to cover JavaScript "as is", without environment-specific tweaks.
But still we use a browser as the demo environment. So we should know at least few user-interface functions.
In this chapter we'll get familiar with the browser-specific functions `alert`, `prompt` and `confirm`.
[cut]
## alert
Syntax:
```js
alert(message);
```
This shows a message and pauses the script execution until the user presses "OK".
For example:
```js run
alert("Hello");
```
The small 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 he deals with the window. In this case -- until he presses "OK".
## prompt
Function `prompt` accepts two arguments:
```js no-beautify
result = prompt(title[, default]);
```
It shows a modal window with a field for text and buttons OK/CANCEL.
`title`
: Is a modal window title
`default`
: An optional second parameter, the initial value for the text field.
The visitor may type something in the field and press OK. Or he can cancel the input by pressing a CANCEL button or hitting the `key:Esc` key.
The call to `prompt` returns the text from the field or `null` if the input is canceled.
As with `alert`, the `prompt` window is modal.
```js run
let age = prompt('How old are you?', 100);
alert(`You are ${age} years old!`); // You are 100 years old!
```
````warn header="IE: always supply a `default`"
The second parameter is optional. But if we don't supply it, Internet Explorer would insert the text `"undefined"` into the prompt.
Run this code in Internet Explorer to see that:
```js run
let test = prompt("Test");
```
So, to look good in IE, it's recommended to always provide the second argument:
```js run
let test = prompt("Test", ''); // <-- for IE
```
````
## confirm
The syntax:
```js
result = confirm(question);
```
Function `confirm` shows a modal window with a `question` and two buttons: OK and CANCEL.
The result is `true` if OK is pressed and `false` otherwise.
For example:
```js run
let isBoss = confirm("Are you the boss?");
alert( isBoss ); // true is OK is pressed
```
## Summary
`alert`
: shows a message.
`prompt`
: shows a message asking the user to input text. It returns the text or, if CANCEL or `key:Esc` is clicked, all browsers except Safari return `null`.
`confirm`
: shows a message and waits the user to press "OK" or "CANCEL". It returns `true` for OK and `false` for CANCEL/`key:Esc`.
There are two limitations shared by all the methods above:
1. The exact location of the modal window is determined by the browser. Usually it's in the center.
2. The exact look of the window also depends on the browser. We can't modify it.
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.