aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/document/links/index.html
blob: 5bd461b72008bb36320f517471daa9063cb3ecd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
title: Document.links
slug: Web/API/Document/links
tags:
  - API
  - Document
  - HTML DOM
  - Property
  - Reference
translation_of: Web/API/Document/links
---
<p>{{ APIRef("DOM") }}</p>

<p>Возвращает объект всех элементов {{HTMLElement("area")}} и {{HTMLElement("a")}}, присутствующих на странице с значением атрибута <a href="/en-US/docs/Web/API/URLUtils.href">href</a>.</p>

<h2 id="Syntax">Синтаксис</h2>

<pre class="eval"><em>nodeList</em> = document.links
</pre>

<p> </p>

<h3 id="Значение">Значение</h3>

<p>{{domxref("HTMLCollection")}}.</p>

<p> </p>

<h2 id="Example">Пример</h2>

<pre class="brush: js">var links = document.links;
for(var i = 0; i &lt; links.length; i++) {
  var linkHref = document.createTextNode(links[i].href);
  var lineBreak = document.createElement("br");
  document.body.appendChild(linkHref);
  document.body.appendChild(lineBreak);
}
</pre>

<h2 id="Спецификации">Спецификации</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Спецификация</th>
   <th scope="col">Статус</th>
   <th scope="col">Комментарий</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG', '#dom-document-links', 'Document.links')}}</td>
   <td>{{ Spec2('HTML WHATWG') }}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName("DOM2 HTML", "html.html#ID-7068919", "document.links")}}</td>
   <td>{{Spec2("DOM2 HTML")}}</td>
   <td>Исходное определение.</td>
  </tr>
 </tbody>
</table>

<h2 id="Совместимость_с_браузерами">Совместимость с браузерами</h2>

<p> </p>

<p>{{Compat("api.Document.links")}}</p>

<p> </p>