blob: f102b496df388c0df78bd27414e17be36e75ab3b (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
---
title: Document.anchors
slug: Web/API/Document/anchors
tags:
- API
- Deprecated
- Document
- HTML DOM
- Property
- Reference
browser-compat: api.Document.anchors
translation_of: Web/API/Document/anchors
---
{{APIRef("DOM")}} {{Deprecated_Header}}
**`anchors`** は {{domxref("Document")}} インターフェイスの読み取り専用のプロパティで、文書中のすべてのアンカーのリストを返します。
## 構文
```js
nodeList = document.anchors;
```
### 値
{{domxref("HTMLCollection")}} です。
## 例
```js
if (document.anchors.length >= 5) {
dump("found too many anchors");
}
```
文書中のアンカーを基に目次を作成して文書に挿入する例を以下に示します。
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Test</title>
<script>
function init() {
var toc = document.getElementById("toc");
var i, li, newAnchor;
for (i = 0; i < document.anchors.length; i++) {
li = document.createElement("li");
newAnchor = document.createElement('a');
newAnchor.href = "#" + document.anchors[i].name;
newAnchor.textContent = document.anchors[i].text;
li.appendChild(newAnchor);
toc.appendChild(li);
}
}
</script>
</head>
<body onload="init()">
<h1>Title</h1>
<h2><a name="contents">Contents</a></h2>
<ul id="toc"></ul>
<h2><a name="plants">Plants</a></h2>
<ol>
<li>Apples</li>
<li>Oranges</li>
<li>Pears</li>
</ol>
<h2><a name="veggies">Veggies</a></h2>
<ol>
<li>Carrots</li>
<li>Celery</li>
<li>Beats</li>
</ol>
</body>
</html>
```
[JSFiddle で確認](https://jsfiddle.net/S4yNp)
## メモ
後方互換性のため、返されるアンカーのセットには `name` 属性を付けて作成されたアンカーのみが含まれ、 `id` 属性付きで作成されたものは含まれません。
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
|