diff options
Diffstat (limited to 'files/ru/web/api/element/queryselectorall/index.html')
-rw-r--r-- | files/ru/web/api/element/queryselectorall/index.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/files/ru/web/api/element/queryselectorall/index.html b/files/ru/web/api/element/queryselectorall/index.html index 8f63c8f72a..31f9443386 100644 --- a/files/ru/web/api/element/queryselectorall/index.html +++ b/files/ru/web/api/element/queryselectorall/index.html @@ -3,11 +3,11 @@ title: Element.querySelectorAll() slug: Web/API/Element/querySelectorAll translation_of: Web/API/Element/querySelectorAll --- -<h2 id="Summary" name="Summary">Общая информация</h2> +<h2 id="Summary">Общая информация</h2> <p>Возвращает список типа <a href="/ru/docs/Web/API/NodeList">NodeList</a>, состоящий из всех элементов, которые являются потомками для элемента, над которым была выполнена функция и удовлетворяющим условию выборки.</p> -<h2 id="Syntax" name="Syntax">Синтаксис</h2> +<h2 id="Syntax">Синтаксис</h2> <pre class="syntaxbox notranslate"><em>elementList</em> = baseElement.querySelectorAll(<em>selectors</em>); </pre> @@ -20,7 +20,7 @@ translation_of: Web/API/Element/querySelectorAll <li><code>selectors —</code> <a href="/en-US/docs/Web/Guide/CSS/Getting_Started/Selectors">текст селектора</a> для выбора нужных элементов.</li> </ul> -<h2 id="Example" name="Example">Примеры</h2> +<h2 id="Example">Примеры</h2> <p>Этот пример возвращает список всех элементов с тегом p, которые находятся в теле документа:</p> @@ -38,7 +38,7 @@ var matches = el.querySelectorAll('div.highlighted > p'); <pre class="brush: js notranslate">var matches = el.querySelectorAll('iframe[data-src]'); </pre> -<h2 id="Notes" name="Notes">Примечания</h2> +<h2 id="Notes">Примечания</h2> <p>Функция выбрасывает исключение SYNTAX_ERR, если текст селектора неправильный.</p> @@ -54,13 +54,13 @@ var matches = el.querySelectorAll('div.highlighted > p'); <p>{{Compat("api.Element.querySelectorAll")}}</p> -<h2 id="Specification" name="Specification">Ссылки на спецификации</h2> +<h2 id="Specification">Ссылки на спецификации</h2> <ul> <li><a href="http://www.w3.org/TR/selectors-api/">Selectors API</a></li> </ul> -<h2 id="See_also" name="See_also">Смотрите также</h2> +<h2 id="See_also">Смотрите также</h2> <ul> <li><a href="/en-US/docs/DOM/Document.querySelectorAll" title="DOM/document.querySelectorAll"><code>document.querySelectorAll</code></a></li> |