diff options
Diffstat (limited to 'files/ru/web/api/element/outerhtml/index.html')
-rw-r--r-- | files/ru/web/api/element/outerhtml/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/api/element/outerhtml/index.html b/files/ru/web/api/element/outerhtml/index.html index 58588da61a..fd571fab8f 100644 --- a/files/ru/web/api/element/outerhtml/index.html +++ b/files/ru/web/api/element/outerhtml/index.html @@ -11,11 +11,11 @@ translation_of: Web/API/Element/outerHTML --- <p>{{APIRef("DOM")}}</p> -<h2 id="Summary" name="Summary">Описание</h2> +<h2 id="Summary">Описание</h2> <p>Атрибут <code>outerHTML</code> DOM-интерфейса {{ domxref("element") }} получает сериализованный HTML-фрагмент, описывающий элемент, включая его потомков. Можно установить замену элемента узлами, полученными из заданной строки.</p> -<h2 id="Syntax" name="Syntax">Синтаксис</h2> +<h2 id="Syntax">Синтаксис</h2> <pre class="eval"><em>var content</em> = <em>element</em>.outerHTML; </pre> @@ -27,7 +27,7 @@ translation_of: Web/API/Element/outerHTML <p>Replaces the <code>element</code> with the nodes generated by parsing the string <code>content</code> with the parent of <code>element</code> as the context node for the fragment parsing algorithm.</p> -<h2 id="Examples" name="Examples">Примеры</h2> +<h2 id="Examples">Примеры</h2> <p>Получение свойства <code>outerHTML</code> элемента:</p> @@ -72,7 +72,7 @@ p.outerHTML = "<div>Этот div заменил параграф.</div& console.log(p.nodeName); // всё ещё "P"; </pre> -<h2 id="Specification" name="Specification">Specification</h2> +<h2 id="Specification">Specification</h2> <table class="standard-table"> <thead> |