aboutsummaryrefslogtreecommitdiff
path: root/files/hu/web/api/window/alert/index.html
blob: 3861de7f10f85c08b337f63711ceaf99f6d50c87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
title: Window.alert()
slug: Web/API/Window/alert
tags:
  - API
  - DOM
  - Függvény
  - Referencia
  - Window
  - alert
translation_of: Web/API/Window/alert
---
<p>{{ APIRef }}</p>

<p>A <strong><code>window.alert()</code></strong> függvény megjelenít egy alert ablakot a megadott opcionális szöveggel és egy OK gombbal.</p>

<h2 id="Syntax" name="Syntax">Szintaxis</h2>

<pre class="syntaxbox">window.alert(<em>uzenet</em>);</pre>

<h3 id="Paraméterek">Paraméterek</h3>

<dl>
 <dt><code>uzenet</code> {{optional_inline}}</dt>
 <dd>Az üzenet az a szöveg amit meg szeretnél jeleníteni az alert dobozban.</dd>
</dl>

<h2 id="Example" name="Example">Példa</h2>

<pre class="brush: js">window.alert("Hello world!");
alert("Hello world!");</pre>

<p>Mindkettő kimenete:</p>

<p><img alt="Image:AlertHelloWorld.png" src="/files/130/AlertHelloWorld.png"></p>

<h2 id="Notes" name="Notes">Megjegyzések</h2>

<p>Az alertet olyan helyeken kell használni, ahol nem szükséges visszajelzés a felhasználótól, de szeretnénk őt értesíteni valamiről.</p>

<p><span class="comment">The following text is shared between this article, DOM:window.prompt and DOM:window.confirm</span> Ez egy modális ablak - megakadályozza a felhasználót, hogy elérje a felületet, amíg be nem zárja azt. Éppen ezért nem ajánlott a túlhasználata.</p>

<h2 id="Specifikáció">Specifikáció</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specifikáció</th>
   <th scope="col">Állapot</th>
   <th scope="col">Megjegyzés</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG', 'timers-and-user-prompts.html#dom-alert', 'alert()')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td></td>
  </tr>
 </tbody>
</table>

<h2 id="Böngésző_kompatibilitás">Böngésző kompatibilitás</h2>



<p>{{Compat("api.Window.alert")}}</p>

<h2 id="See_also" name="See_also">Lásd még</h2>

<ul>
 <li>{{domxref("window.confirm","confirm")}}</li>
 <li>{{domxref("window.prompt","prompt")}}</li>
 <li>For <a href="/en-US/docs/Chrome" title="/en-US/docs/Chrome">Mozilla Chrome</a> see {{ifmethod("nsIPromptService","alert")}} and {{ifmethod("nsIPromptService","alertCheck")}}</li>
</ul>