diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-10-20 13:28:52 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 13:28:52 +0300 |
commit | 1386fed7d38652d5848d315927e7e23a66cffd13 (patch) | |
tree | eb4b9adfec3f46c77304a1b9461d44357c8164c8 /files/ru/web/api/console | |
parent | b0f32a46245b1033098a5a9826a7818fa4e65dde (diff) | |
download | translated-content-1386fed7d38652d5848d315927e7e23a66cffd13.tar.gz translated-content-1386fed7d38652d5848d315927e7e23a66cffd13.tar.bz2 translated-content-1386fed7d38652d5848d315927e7e23a66cffd13.zip |
[RU] Remove `name` attribute from headings (#2788)
Diffstat (limited to 'files/ru/web/api/console')
-rw-r--r-- | files/ru/web/api/console/dir/index.html | 6 | ||||
-rw-r--r-- | files/ru/web/api/console/index.html | 6 | ||||
-rw-r--r-- | files/ru/web/api/console/timeend/index.html | 12 |
3 files changed, 12 insertions, 12 deletions
diff --git a/files/ru/web/api/console/dir/index.html b/files/ru/web/api/console/dir/index.html index e04919d221..cf3aa850db 100644 --- a/files/ru/web/api/console/dir/index.html +++ b/files/ru/web/api/console/dir/index.html @@ -9,7 +9,7 @@ translation_of: Web/API/Console/dir --- <p>{{ APIRef("Console API") }}{{Non-standard_header}}</p> -<h2 id="Summary" name="Summary">Описание</h2> +<h2 id="Summary">Описание</h2> <p>Отображает список свойств указанного JavaScript объекта. Вывод представлен в виде иерархического списка с возможностью просмотра содержимого дочерних объектов.</p> @@ -17,7 +17,7 @@ translation_of: Web/API/Console/dir <p><img alt="console-dir.png" class="default internal" src="/@api/deki/files/6081/=console-dir.png"></p> -<h2 id="Syntax" name="Syntax">Синтаксис</h2> +<h2 id="Syntax">Синтаксис</h2> <pre class="syntaxbox">console.dir(<em>object</em>); </pre> @@ -29,7 +29,7 @@ translation_of: Web/API/Console/dir <dd>JavaScript-объект свойства которого нужно вывести.</dd> </dl> -<h3 id="Specification" name="Specification">Спецификация</h3> +<h3 id="Specification">Спецификация</h3> <p><a href="https://github.com/DeveloperToolsWG/console-object/blob/master/api.md#consoledirobject">Console Object API</a></p> diff --git a/files/ru/web/api/console/index.html b/files/ru/web/api/console/index.html index 1e4c4350ad..f467d63ce1 100644 --- a/files/ru/web/api/console/index.html +++ b/files/ru/web/api/console/index.html @@ -82,9 +82,9 @@ translation_of: Web/API/Console </dl> -<h2 id="Usage" name="Usage">Использование</h2> +<h2 id="Usage">Использование</h2> -<h3 id="Outputting_text_to_the_console" name="Outputting_text_to_the_console"><a id="Outputting_text_to_the_console" name="Outputting_text_to_the_console">Вывод текста в консоль</a></h3> +<h3 id="Outputting_text_to_the_console" name="Outputting_text_to_the_console"><a id="Outputting_text_to_the_console">Вывод текста в консоль</a></h3> <p>Чаще всего Консоль используется для вывода строк текста и других типов данных. Существует четыре категории вывода, которые вы можете создавать, используя функции {{domxref("console.log()")}}, {{domxref("console.info()")}}, {{domxref("console.warn()")}}, {{domxref("console.error()")}}. Их вывод стилизован по-разному, и вы можете использовать фильтры, предоставляемые браузером, чтобы видеть только интересующие вас вещи.</p> @@ -115,7 +115,7 @@ console.info("My first car was a", car, ". The object is: ", someObject);</pre> <pre>[09:28:22.711] My first car was a Dodge Charger . The object is: ({str:"Some text", id:5}) </pre> -<h4 id="Преобразование_строк_с_использованием_масок"><a id="Using_string_substitutions" name="Using_string_substitutions">Преобразование строк с использованием масок</a></h4> +<h4 id="Преобразование_строк_с_использованием_масок"><a id="Using_string_substitutions">Преобразование строк с использованием масок</a></h4> <p>Gecko 9.0 {{geckoRelease("9.0")}} ввёл поддержку подстановочных символов (масок). При передаче строки одному из методов вы можете использовать следующие символы:</p> diff --git a/files/ru/web/api/console/timeend/index.html b/files/ru/web/api/console/timeend/index.html index b25db28e60..e0ee61dea9 100644 --- a/files/ru/web/api/console/timeend/index.html +++ b/files/ru/web/api/console/timeend/index.html @@ -17,19 +17,19 @@ translation_of: Web/API/Console/timeEnd <p>{{AvailableInWorkers}}</p> -<h2 id="Syntax" name="Syntax">Синтаксис</h2> +<h2 id="Syntax">Синтаксис</h2> <pre class="brush: js">console.timeEnd(<code><var>label</var></code>); </pre> -<h3 id="Parameters" name="Parameters">Параметры</h3> +<h3 id="Parameters">Параметры</h3> <dl> <dt><code>label</code></dt> <dd>Метка таймера, который будет остановлен. Останавливается один раз. После остановки время отображается в <a href="/ru/docs/Tools/Web_Console" title="Web Console">Веб-консоли</a>.</dd> </dl> -<h2 id="Specification" name="Specification">Примеры</h2> +<h2 id="Specification">Примеры</h2> <pre class="brush: js">console.time("answer time"); alert("Click to continue"); @@ -43,7 +43,7 @@ console.timeEnd("answer time");</pre> <p>Обратите внимание, что метка таймера отображается как при вызове <code>timeLog()</code>, так и завершении таймера. Кроме того, вызов timeEnd() выводит дополнительную информацию "timer ended", чтобы очевидно показать, что таймер больше не отслеживается.</p> -<h2 id="Specification" name="Specification">Спецификация</h2> +<h2 id="Specification">Спецификация</h2> <table> <thead> @@ -62,13 +62,13 @@ console.timeEnd("answer time");</pre> </tbody> </table> -<h2 id="Browser_compatibility" name="Browser_compatibility">Совместимость с браузерами</h2> +<h2 id="Browser_compatibility">Совместимость с браузерами</h2> <div>{{Compat("api.Console.timeEnd")}}</div> <div id="compat-mobile"></div> -<h2 id="See_also" name="See_also">Смотрите также</h2> +<h2 id="See_also">Смотрите также</h2> <ul> <li>{{domxref("Console.time")}}</li> |