diff options
Diffstat (limited to 'files/ru/web/api/domtokenlist/replace/index.html')
-rw-r--r-- | files/ru/web/api/domtokenlist/replace/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/api/domtokenlist/replace/index.html b/files/ru/web/api/domtokenlist/replace/index.html index 41172fee2f..b682299fcb 100644 --- a/files/ru/web/api/domtokenlist/replace/index.html +++ b/files/ru/web/api/domtokenlist/replace/index.html @@ -9,7 +9,7 @@ translation_of: Web/API/DOMTokenList/replace <h2 id="Синтаксис">Синтаксис</h2> -<pre class="syntaxbox notranslate"><var>tokenList</var>.replace(<var>oldToken</var>, <var>newToken</var>);</pre> +<pre class="syntaxbox"><var>tokenList</var>.replace(<var>oldToken</var>, <var>newToken</var>);</pre> <h3 id="Параметры">Параметры</h3> @@ -34,11 +34,11 @@ translation_of: Web/API/DOMTokenList/replace <p>В HTML:</p> -<pre class="brush: html notranslate"><span class="a b c"></span></pre> +<pre class="brush: html"><span class="a b c"></span></pre> <p>В JavaScript:</p> -<pre class="brush: js notranslate">let span = document.querySelector("span"); +<pre class="brush: js">let span = document.querySelector("span"); let classes = span.classList; let result = classes.replace("c", "z"); @@ -58,7 +58,7 @@ if (result) { <p>Следующий полифил добавит метод replace в класс <code>DOMTokenList</code>. Следующий код будет работать только с <strong>IE10-11</strong>. Чтобы использовать с более ранними версиями IE, обратитесь к полифилу по {{domxref("element.classList#Polyfill")}}</p> -<pre class="brush: js notranslate"><code>DOMTokenList.prototype.replace = function (a, b) { +<pre class="brush: js"><code>DOMTokenList.prototype.replace = function (a, b) { if (this.contains(a)) { this.add(b); this.remove(a); |