URL.hash
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.
io error: No such file or directory (os error 2) (/home/runner/work/yari/yari/mdn/translated-content/files/fr/web/api/url_api/index.md)
La propriété hash
de l'interface URL
retourne un USVString
contenant le caractère '#'
suivi par l'identificateur de fragment de URL.
Le fragment n'est pas décodé en pourcent. Si l'URL ne contient pas d'identificateur de fragment, la valeur de cette propriété est une chaîne de caractère vide — ""
.
Note : Cette fonctionnalité est disponible via les Web Workers.
Syntaxe
string = object.hash;
object.hash = string;
Valeur
Un USVString
.
Exemples
var url = new URL(
"https://developer.mozilla.org/fr/docs/Web/API/URL/href#Examples",
);
url.hash; // Returns '#Examples'
Spécifications
Specification |
---|
URL Standard # dom-url-hash |
Compatibilité des navigateurs
BCD tables only load in the browser
Voir aussi
- L'interface
URL
dont il est contenu.