Document: hidden-Eigenschaft

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Die Document.hidden schreibgeschützte Eigenschaft gibt einen booleschen Wert zurück, der anzeigt, ob die Seite als ausgeblendet gilt oder nicht.

Die Document.visibilityState-Eigenschaft bietet eine alternative Möglichkeit, um festzustellen, ob die Seite ausgeblendet ist.

Wert

Ein boolescher Wert, true, wenn die Seite ausgeblendet ist, und false andernfalls.

Beispiele

js
document.addEventListener("visibilitychange", () => {
  console.log(document.hidden);
  // Modify behavior…
});

Spezifikationen

Specification
HTML
# dom-document-hidden

Browser-Kompatibilität

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
hidden

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support
See implementation notes.
Requires a vendor prefix or different name for use.
Has more compatibility info.

Siehe auch