diff options
Diffstat (limited to 'files/ru/web/api/node/replacechild/index.html')
-rw-r--r-- | files/ru/web/api/node/replacechild/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/files/ru/web/api/node/replacechild/index.html b/files/ru/web/api/node/replacechild/index.html index 84c7d5bfc2..ace3159e81 100644 --- a/files/ru/web/api/node/replacechild/index.html +++ b/files/ru/web/api/node/replacechild/index.html @@ -13,9 +13,9 @@ original_slug: Web/API/Node.replaceChild --- <div> {{ApiRef}}</div> -<h2 id="Summary" name="Summary">Аннотация</h2> +<h2 id="Summary">Аннотация</h2> <p>Заменяет дочерний элемент на выбранный. Возвращает заменённый элемент.</p> -<h2 id="Syntax" name="Syntax">Синтаксис</h2> +<h2 id="Syntax">Синтаксис</h2> <pre class="syntaxbox"><em>replacedNode</em> = <em>parentNode</em>.replaceChild(<em>newChild</em>, <em>oldChild</em>); </pre> <ul> @@ -23,7 +23,7 @@ original_slug: Web/API/Node.replaceChild <li><code>oldChild</code> элемент который будет заменён.</li> <li><code>replacedNode</code> заменённый элемент. Тоже самое что и <code>oldChild</code>.</li> </ul> -<h2 id="Example" name="Example">Пример</h2> +<h2 id="Example">Пример</h2> <pre class="brush:js">// <div> // <span id="childSpan">foo bar</span> // </div> @@ -53,13 +53,13 @@ parentDiv.replaceChild(sp1, sp2); // <span id="newSpan">new replacement span element.</span> // </div> </pre> -<h2 id="Specification" name="Specification">Спецификация</h2> +<h2 id="Specification">Спецификация</h2> <ul> <li><a href="http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#method-replaceChild">DOM Level 1 Core: replaceChild</a></li> <li><a href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-785887307">DOM Level 2 Core: replaceChild</a></li> <li><a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-785887307">DOM Level 3 Core: replaceChild</a></li> </ul> -<h2 id="See_also" name="See_also">Смотрите также</h2> +<h2 id="See_also">Смотрите также</h2> <ul> <li>{{domxref("Node.removeChild")}}</li> </ul> |