--- title: WindowEventHandlers.onhashchange slug: Web/API/WindowEventHandlers/onhashchange translation_of: Web/API/WindowEventHandlers/onhashchange ---
Событие hashchange происходит когда изменяется hash (смотри {{domxref("Window.location", "location.hash")}}).
window.onhashchange = funcRef;
или
<body onhashchange="funcRef();">
или
window.addEventListener("hashchange", funcRef, false);
funcRefif ("onhashchange" in window) {
alert("The browser supports the hashchange event!");
}
function locationHashChanged() {
if (location.hash === "#somecoolfeature") {
somecoolfeature();
}
}
window.onhashchange = locationHashChanged;
The dispatched hashchange event has the following fields:
| Field | Type | Description |
newURL {{gecko_minversion_inline("6.0")}} |
DOMString |
The new URL to which the window is navigating. |
oldURL {{gecko_minversion_inline("6.0")}} |
DOMString |
The previous URL from which the window was navigated. |
| Specification | Status | Comment |
|---|---|---|
| {{SpecName('HTML WHATWG', '#windoweventhandlers', 'GlobalEventHandlers')}} | {{Spec2('HTML WHATWG')}} | |
| {{SpecName('HTML5.1', '#windoweventhandlers', 'GlobalEventHandlers')}} | {{Spec2('HTML5.1')}} | |
| {{SpecName("HTML5 W3C", "#windoweventhandlers", "GlobalEventHandlers")}} | {{Spec2('HTML5 W3C')}} |
{{Compat}}