URL: password-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.
Hinweis: Dieses Feature ist verfügbar in Web Workers.
Die password
-Eigenschaft des URL
-Interfaces
ist ein String, der das vor dem Domainnamen angegebene Passwort enthält.
Wert
Ein String.
Beispiele
js
const url = new URL(
"https://anonymous:flabada@developer.mozilla.org/en-US/docs/Web/API/URL/password",
);
console.log(url.password); // Logs "flabada"
Spezifikationen
Specification |
---|
URL Standard # dom-url-password |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
- Das
URL
-Interface, zu dem es gehört.