diff options
Diffstat (limited to 'files/ru/web/javascript/reference/global_objects/string/sub/index.html')
-rw-r--r-- | files/ru/web/javascript/reference/global_objects/string/sub/index.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/files/ru/web/javascript/reference/global_objects/string/sub/index.html b/files/ru/web/javascript/reference/global_objects/string/sub/index.html index cf5f4f7d5a..b2e773988e 100644 --- a/files/ru/web/javascript/reference/global_objects/string/sub/index.html +++ b/files/ru/web/javascript/reference/global_objects/string/sub/index.html @@ -13,18 +13,18 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/sub --- <div>{{JSRef("Global_Objects", "String")}} {{deprecated_header}}</div> -<h2 id="Summary" name="Summary">Сводка</h2> +<h2 id="Summary">Сводка</h2> <p>Метод <strong><code>sub()</code></strong> создаёт HTML-элемент {{HTMLElement("sub")}}, заставляющий строку отображаться подстрочным текстом (нижним индексом).</p> -<h2 id="Syntax" name="Syntax">Синтаксис</h2> +<h2 id="Syntax">Синтаксис</h2> <pre class="syntaxbox"><code><var>str</var>.sub()</code></pre> -<h2 id="Description" name="Description">Описание</h2> +<h2 id="Description">Описание</h2> <p>Метод <code>sub()</code> заключает строку в тег <code><sub></code>: <code>"<sub>str</sub>"</code>.</p> -<h2 id="Examples" name="Examples">Примеры</h2> +<h2 id="Examples">Примеры</h2> -<h3 id="Example:_Using_sub_and_sup_methods_to_format_a_string" name="Example:_Using_sub_and_sup_methods_to_format_a_string">Пример: использование методов <code>sub()</code> и <code>sup()</code></h3> +<h3 id="Example:_Using_sub_and_sup_methods_to_format_a_string">Пример: использование методов <code>sub()</code> и <code>sup()</code></h3> <p>В следующем примере для форматирования строки используются методы <code>sub()</code> и {{jsxref("String.prototype.sup()", "sup()")}}:</p> <pre class="brush: js">var superText = 'надстрочный'; var subText = 'подстрочный'; @@ -37,7 +37,7 @@ document.write('Вот так выглядит ' + subText.sub() + ' текст. Вот так выглядит <sub>подстрочный</sub> текст. </pre> -<h2 id="Specifications" name="Specifications">Спецификации</h2> +<h2 id="Specifications">Спецификации</h2> <table class="standard-table"> <tbody> <tr> @@ -54,10 +54,10 @@ document.write('Вот так выглядит ' + subText.sub() + ' текст. </tbody> </table> -<h2 id="Browser_compatibility" name="Browser_compatibility">Совместимость с браузерами</h2> +<h2 id="Browser_compatibility">Совместимость с браузерами</h2> <p>{{Compat}}</p> -<h2 id="See_also" name="See_also">Смотрите также</h2> +<h2 id="See_also">Смотрите также</h2> <ul> <li>{{jsxref("String.prototype.sup()")}}</li> </ul> |