aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/api/window/stop/index.html
blob: 8968e89177b8eb1ccc66cc71fbb67fd5883e3978 (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
---
title: Window.stop()
slug: Web/API/Window/stop
tags:
  - API
  - DOM
  - DOM_0
  - Method
  - stopwindowloading
translation_of: Web/API/Window/stop
---
<div>{{APIRef}}</div>

<h2 id="Summary" name="Summary">Zusammenfassung</h2>

<p>Diese Methode stoppt das Laden des Fensters.</p>

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

<pre class="syntaxbox">window.stop()
</pre>

<h2 id="Example" name="Example">Beispiel</h2>

<pre class="brush:js">window.stop();
</pre>

<h2 id="Notes" name="Notes">Notizen</h2>

<p>Die stop() Methode ist genau equivalent zum Klicken des Stop-Buttons im Browser. Aufgrund der Reihenfolge in der Scripte geladen werden, kann die stop() Methode nicht das Dokument, in dem es enthalten ist, vom Laden stoppen, aber es stoppt das Laden von großen Bildern, neuen Fenstern, und anderen Objekten, die verzögert geladen werden.</p>

<h2 id="Specification" name="Specification">Spezifikation</h2>

<p>DOM Level 0. Kein Teil der Spezifikation.</p>

<h2 id="Compatibility">Compatibility</h2>

<p>Die stop() Methode wird nicht vom Internet Explorer unterstützt.</p>