aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/windoweventhandlers/onpopstate/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/windoweventhandlers/onpopstate/index.html')
-rw-r--r--files/ru/web/api/windoweventhandlers/onpopstate/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/api/windoweventhandlers/onpopstate/index.html b/files/ru/web/api/windoweventhandlers/onpopstate/index.html
index 3177085f9d..5c168c1a61 100644
--- a/files/ru/web/api/windoweventhandlers/onpopstate/index.html
+++ b/files/ru/web/api/windoweventhandlers/onpopstate/index.html
@@ -13,7 +13,7 @@ translation_of: Web/API/WindowEventHandlers/onpopstate
<p><strong>Примечание:</strong>, просто вызов <code>history.pushState()</code> или <code>history.replaceState()</code> не вызовет событие <code>popstate</code>. Событие <code>popstate</code> срабатывает только тогда, когда происходят какие то действия в браузере, такие как нажатие кнопки "назад" (или вызов <code>history.back()</code> из JavaScript). Это событие срабатывает только когда пользователь переходит между двумя записями истории одного и того же документа.</p>
</div>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="syntaxbox notranslate">window.onpopstate = <var>funcRef</var>;
</pre>
@@ -22,7 +22,7 @@ translation_of: Web/API/WindowEventHandlers/onpopstate
<li><code>funcRef</code> – функция обработчик.</li>
</ul>
-<h2 id="The_popstate_event" name="The_popstate_event">Примеры</h2>
+<h2 id="The_popstate_event">Примеры</h2>
<p>В качестве примера, страница <code>http://example.com/example.html</code>, исполняя нижеследующий код, сгенерирует всплывающие сообщения, как показано в комментариях:</p>
@@ -40,7 +40,7 @@ history.go(2); // alerts "location: http://example.com/example.html?page=3, sta
<p>Обратите внимание, что даже несмотря на то, что первоначальная запись истории (для <code>http://example.com/example.html</code>) не имеет объекта события, связанного с ней, событие <code>popstate</code> всё равно произойдёт, когда мы активируем эту запись после второго вызова <code>history.back()</code>.</p>
-<h2 id="Specification" name="Specification">Спецификация</h2>
+<h2 id="Specification">Спецификация</h2>
<ul>
<li><a href="http://www.whatwg.org/specs/web-apps/current-work/#handler-window-onpopstate">HTML5 popstate event</a></li>
@@ -50,7 +50,7 @@ history.go(2); // alerts "location: http://example.com/example.html?page=3, sta
<p>{{Compat("api.WindowEventHandlers.onpopstate")}}</p>
-<h2 id="See_also" name="See_also">Смотрите также</h2>
+<h2 id="See_also">Смотрите также</h2>
<ul>
<li>{{domxref("window.history")}}</li>