HTMLAreaElement: 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.
Die HTMLAreaElement.password
-Eigenschaft ist ein
String, der das Passwort enthält, das vor dem Domainnamen angegeben wird.
Wenn es gesetzt wird, ohne zuerst die
username
Eigenschaft zu setzen, schlägt es stillschweigend fehl.
Wert
Ein String.
Beispiele
js
// An <area id="myArea" href="https://anonymous:flabada@developer.mozilla.org/en-US/docs/HTMLAreaElement"> is in the document
const area = document.getElementByID("myArea");
area.password; // returns 'flabada'
Spezifikationen
Specification |
---|
HTML Standard # dom-hyperlink-password-dev |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
- Das
HTMLAreaElement
-Interface, zu dem es gehört.