HTMLAreaElement: href-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.href
-Eigenschaft ist ein Stringifier, der einen String mit der vollständigen URL zurückgibt und es ermöglicht, das href
zu aktualisieren.
Wert
Ein String.
Beispiele
js
// An <area id="myArea" href="https://developer.mozilla.org/en-US/HTMLAreaElement"> element is in the document
const area = document.getElementById("myArea");
area.href; // returns 'https://developer.mozilla.org/en-US/HTMLAreaElement'
Spezifikationen
Specification |
---|
HTML Standard # dom-hyperlink-href-dev |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
- Das
HTMLAreaElement
-Interface, zu dem es gehört.