You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 1-js/02-first-steps/01-hello-world/2-hello-alert-ext/task.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,8 @@ importance: 5
2
2
3
3
---
4
4
5
-
# Show an alert with an external script
5
+
# Afișați o alertă cu un script extern
6
6
7
-
Take the solution of the previous task <info:task/hello-alert>. Modify it by extracting the script content into an external file `alert.js`, residing in the same folder.
7
+
Luați soluția sarcinii anterioare <info:task/hello-alert>. Modificați-o extrăgând conținutul script-ului într-un fișier extern `alert.js`, cu reședința în același folder.
8
8
9
-
Open the page, ensure that the alert works.
9
+
Deschideți pagina, asigurați-vă că funcționează alerta.
This part of the tutorial is about core JavaScript, the language itself.
3
+
Această parte a tutorialului este despre JavaScript de bază, limbajul în sine.
4
4
5
-
But we need a working environment to run our scripts and, since this book is online, the browser is a good choice. We'll keep the amount of browser-specific commands (like`alert`) to a minimum so that you don't spend time on them if you plan to concentrate on another environment (like Node.js). We'll focus on JavaScript in the browser in the [next part](/ui)of the tutorial.
5
+
Dar avem nevoie de un mediu pentru a rula script-urile și, având în vedere că această carte este online, browser-ul este o alegere bună. Nu o să folosim prea multe comenzi specifice browser-ului (ca`alert`) ca să nu pierdeți prea mult timp cu ele dacă vreți sa vă concentrați pe un alt mediu (ca Node.js). O să ne concentrăm pe JavaScript în browser în [urmatoarea parte](/ui)a tutorialului.
6
6
7
-
So first, let's see how we attach a script to a webpage. For server-side environments (like Node.js), you can execute the script with a command like`"node my.js"`.
7
+
În primul rând, haideți să vedem cum atașăm un script unei pagini web. Pentru mediile de dezvoltare de tipul server (ca și Node.js), se poate executa script-ul cu o comandă precum`"node my.js"`.
8
8
9
+
## Tag-ul "script"
9
10
10
-
## The "script" tag
11
+
Programele JavaScript pot fi inserate în orice parte al unui document HTML cu ajutorul tag-ului `<script>`.
11
12
12
-
JavaScript programs can be inserted into any part of an HTML document with the help of the `<script>` tag.
13
-
14
-
For instance:
13
+
De exemplu:
15
14
16
15
```html run height=100
17
16
<!DOCTYPE HTML>
18
17
<html>
19
18
20
19
<body>
21
20
22
-
<p>Before the script...</p>
21
+
<p>Înainte de script...</p>
23
22
24
23
*!*
25
24
<script>
26
25
alert( 'Hello, world!' );
27
26
</script>
28
27
*/!*
29
28
30
-
<p>...After the script.</p>
29
+
<p>...După script.</p>
31
30
32
31
</body>
33
32
34
33
</html>
35
34
```
36
35
37
36
```online
38
-
You can run the example by clicking the "Play" button in the right-top corner of the box above.
37
+
Puteți rula exemplul dând click pe butonul „Play” din colțul din dreapta-sus al căsuței de mai sus.
39
38
```
40
39
41
-
The `<script>` tag contains JavaScript code which is automatically executed when the browser processes the tag.
42
-
40
+
Tag-ul `<script>` conține cod JavaScript care este executat automat cand browser-ul procesează tag-ul.
43
41
44
-
## Modern markup
42
+
## Markup modern
45
43
46
-
The`<script>`tag has a few attributes that are rarely used nowadays but can still be found in old code:
44
+
Tag-ul`<script>`are câteva atribute care mai nou sunt folosite rar, dar care încă se găsesc în codul vechi:
: The old HTML standard, HTML4, required a script to have a `type`. Usually it was`type="text/javascript"`. It's not required anymore. Also, the modern HTML standard totally changed the meaning of this attribute. Now, it can be used for JavaScript modules. But that's an advanced topic; we'll talk about modules in another part of the tutorial.
: În vechiul standard HTML, HTML4, un script era necesar să aibă un `type`. De obicei era`type="text/javascript"`. Acum nu mai este nevoie de el. De asemenea, standardul HTML modern a schimbat total înțelesul acestui atribut. Acum, el poate fi folosit pentru module JavaScript. Dar acesta este un subiect mai avansat; o să vorbim despre module în altă parte a tutorialului.
: This attribute was meant to show the language of the script. This attribute no longer makes sense because JavaScript is the default language. There is no need to use it.
: Acest atribut a fost menit să arate limbajul script-ului. Acest atribut nu mai are sens deoarece JavaScript este limbajul implicit. Nu este nevoie să îl folosiți.
53
51
54
-
Comments before and after scripts.
55
-
: In really ancient books and guides, you may find comments inside `<script>`tags, like this:
52
+
Comentarii înainte și după script-uri.
53
+
: În cărțile și ghidurile foarte vechi, este posibil să găsiți comentarii în interiorul tag-urilor `<script>`în felul următor:
56
54
57
55
```html no-beautify
58
56
<script type="text/javascript"><!--
59
57
...
60
58
//--></script>
61
59
```
62
60
63
-
This trick isn't used in modern JavaScript. These comments hid JavaScript code from old browsers that didn't know how to process the `<script>` tag. Since browsers released in the last 15 years don't have this issue, this kind of comment can help you identify really old code.
64
-
61
+
Acest truc nu este folosit în JavaScript modern. Aceste comentarii ascund codul JavaScript în browserele vechi care nu știau cum să proceseze tag-ul `<script>`. Deoarece browserele lansate în ultimii 15 ani nu au această problemă, accest tip de comentariu vă poate ajuta să identificați cod foarte vechi.
65
62
66
-
## External scripts
63
+
## Script-uri externe
67
64
68
-
If we have a lot of JavaScript code, we can put it into a separate file.
65
+
Dacă avem mult cod JavaScript, putem să îl punem într-un fișier separat.
69
66
70
-
Script files are attached to HTML with the `src` attribute:
67
+
Fișierele de acest tip sunt atașate codului HTML cu ajutorul atributului `src`:
71
68
72
69
```html
73
70
<scriptsrc="/path/to/script.js"></script>
74
71
```
75
72
76
-
Here, `/path/to/script.js`is an absolute path to the script from the site root. One can also provide a relative path from the current page. For instance, `src="script.js"`would mean a file`"script.js"`in the current folder.
73
+
Aici, `/path/to/script.js`este o cale absolută către script de la rădăcina site-ului. Se poate oferi, de asemenea, o cale relativă din pagina curentă. De exemplu, `src="script.js"`ar însemna un fișier`"script.js"`în folderul curent.
Pentru a atașa mai multe scripturi, utilizați mai multe tag-uri:
85
82
86
83
```html
87
84
<scriptsrc="/js/script1.js"></script>
@@ -90,29 +87,29 @@ To attach several scripts, use multiple tags:
90
87
```
91
88
92
89
```smart
93
-
As a rule, only the simplest scripts are put into HTML. More complex ones reside in separate files.
90
+
De regulă, doar cele mai simple script-uri sunt puse în HTML. Cele mai complexe se află în fișiere separate.
94
91
95
-
The benefit of a separate file is that the browser will download it and store it in its [cache](https://en.wikipedia.org/wiki/Web_cache).
92
+
Avantajul unui fișier separat este că browserul îl va descărca și îl va stoca în [cache](https://en.wikipedia.org/wiki/Web_cache).
96
93
97
-
Other pages that reference the same script will take it from the cache instead of downloading it, so the file is actually downloaded only once.
94
+
Alte pagini care fac referire la același script îl vor lua din cache în loc să-l descarce, astfel încât fișierul este descărcat efectiv o singură dată.
98
95
99
-
That reduces traffic and makes pages faster.
96
+
Aceasta reduce traficul și face paginile mai rapide.
100
97
```
101
98
102
-
````warn header="If`src`is set, the script content is ignored."
103
-
A single `<script>`tag can't have both the`src`attribute and code inside.
99
+
````warn header="Daca`src`este setat, conținutul scriptului este ignorat."
100
+
Un singur tag `<script>`nu poate avea atât atributul`src`cât și codul în interior.
104
101
105
-
This won't work:
102
+
Nu va funcționa:
106
103
107
104
```html
108
105
<script*!*src*/!*="file.js">
109
-
alert(1); //the content is ignored, because src is set
106
+
alert(1); //conținutul este ignorat pentru că src este setat
110
107
</script>
111
108
```
112
109
113
-
We must choose either an external `<script src="…">`or a regular`<script>`with code.
110
+
Trebuie să alegem fie un `<script src="…">`extern sau un`<script>`obișnuit cu cod.
114
111
115
-
The example above can be split into two scripts to work:
112
+
Exemplul de mai sus poate fi împărțit în două scripturi pentru a funcționa:
116
113
117
114
```html
118
115
<scriptsrc="file.js"></script>
@@ -122,11 +119,12 @@ The example above can be split into two scripts to work:
122
119
```
123
120
````
124
121
125
-
## Summary
122
+
## Rezumat
126
123
127
-
- We can use a `<script>` tag to add JavaScript code to a page.
128
-
- The `type` and `language` attributes are not required.
129
-
- A script in an external file can be inserted with `<script src="path/to/script.js"></script>`.
124
+
- Putem folosi un tag `<script>` pentru a adăuga cod JavaScript într-o pagină.
125
+
- Atributele `type` și `language` nu sunt necesare.
126
+
- Un script poate fi inserat într-un fișier extern cu `<script src="path/to/script.js"></script>`.
130
127
131
128
132
-
There is much more to learn about browser scripts and their interaction with the webpage. But let's keep in mind that this part of the tutorial is devoted to the JavaScript language, so we shouldn't distract ourselves with browser-specific implementations of it. We'll be using the browser as a way to run JavaScript, which is very convenient for online reading, but only one of many.
129
+
Există mult mai multe lucruri de învățat despre script-urile browser-ului și interacțiunea lor cu pagina web.
130
+
Dar să reținem că această parte a tutorialului este dedicată limbajului JavaScript, deci nu trebuie să ne distragem cu implementările specifice browserului. Vom folosi browser-ul ca o modalitate de a rula JavaScript, care este foarte convenabil pentru citirea online, dar doar unul dintre mulți.
0 commit comments