diff options
author | Ryan Johnson <rjohnson@mozilla.com> | 2021-04-29 16:16:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 16:16:42 -0700 |
commit | 95aca4b4d8fa62815d4bd412fff1a364f842814a (patch) | |
tree | 5e57661720fe9058d5c7db637e764800b50f9060 /files/hu/web/api/window/alert | |
parent | ee3b1c87e3c8e72ca130943eed260ad642246581 (diff) | |
download | translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2 translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip |
remove retired locales (#699)
Diffstat (limited to 'files/hu/web/api/window/alert')
-rw-r--r-- | files/hu/web/api/window/alert/index.html | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/files/hu/web/api/window/alert/index.html b/files/hu/web/api/window/alert/index.html deleted file mode 100644 index 3861de7f10..0000000000 --- a/files/hu/web/api/window/alert/index.html +++ /dev/null @@ -1,72 +0,0 @@ ---- -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> |