Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

WindowEventHandlers.onhashchange

Перевод не завершен. Пожалуйста, помогите перевести эту статью с английского.

Событие hashchange происходит когда изменяется hash (смотри location.hash).

Синтаксис

window.onhashchange = funcRef;

или

<body onhashchange="funcRef();">

или

window.addEventListener("hashchange", funcRef, false);

Параметры

funcRef
Ссылка на функцию.

Пример

if ("onhashchange" in window) {
    alert("The browser supports the hashchange event!");
}

function locationHashChanged() {
    if (location.hash === "#somecoolfeature") {
        somecoolfeature();
    }
}

window.onhashchange = locationHashChanged;

The hashchange event

The dispatched hashchange event has the following fields:

Field Type Description
newURL DOMString The new URL to which the window is navigating.
oldURL DOMString The previous URL from which the window was navigated.

Specifications

Specification Status Comment
WHATWG HTML Living Standard
Определение 'GlobalEventHandlers' в этой спецификации.
Живой стандарт  
HTML5.1
Определение 'GlobalEventHandlers' в этой спецификации.
Рабочий черновик  
HTML5
Определение 'GlobalEventHandlers' в этой спецификации.
Рекомендация  

Поддержка браузерами

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 5.0 3.6 (1.9.2)

8.0

oldURL/newURL attributes are not supported.

10.6 5.0
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support 2.2 1.0 (1.9.2) 9.0 11.0 5.0

Метки документа и участники

 Внесли вклад в эту страницу: alexismaster
 Обновлялась последний раз: alexismaster,