From 371ce8c594401c866e65445e9215522666bc6a10 Mon Sep 17 00:00:00 2001 From: SemenSavlook Date: Tue, 22 Feb 2022 20:38:10 +0600 Subject: RU: Added translation, in the last paragraph. (#4239) --- files/ru/web/api/element/outerhtml/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/ru/web/api/element/outerhtml/index.html b/files/ru/web/api/element/outerhtml/index.html index eebca14905..de47237dc3 100644 --- a/files/ru/web/api/element/outerhtml/index.html +++ b/files/ru/web/api/element/outerhtml/index.html @@ -64,7 +64,7 @@ console.log(container.firstChild.nodeName); // логирует "P"
document.documentElement.outerHTML = "test";  // бросает DOMException
 
-

Also, while the element will be replaced in the document, the variable whose outerHTML property was set will still hold a reference to the original element:

+

Обратите внимание, когда произойдёт изменение элемента в документе, переменная, у которой было установлено свойство outerHTML, будет по-прежнему хранить ссылку на оригинальный элемент:

var p = document.getElementsByTagName("p")[0];
 console.log(p.nodeName); // показывает: "P"
-- 
cgit v1.2.3-54-g00ecf