HTMLAnchorElement: hostname-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 HTMLAnchorElement.hostname
-Eigenschaft ist ein String, der die Domain der URL enthält.
Wert
Ein String.
Beispiele
js
// An <a id="myAnchor" href="/en-US/docs/HTMLAnchorElement"> element is in the document
const anchor = document.getElementById("myAnchor");
anchor.hostname; // returns 'developer.mozilla.org'
Spezifikationen
Specification |
---|
HTML Standard # dom-hyperlink-hostname-dev |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
- Die
HTMLAnchorElement
Schnittstelle, zu der es gehört.