blob: 510b6efcc7d9a19702e5428e799f2ab29b14c2fb (
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: Element.previousElementSibling
slug: Web/API/Element/previousElementSibling
tags:
- API
- DOM
- Element
- プロパティ
- 読み取り専用
- リファレンス
browser-compat: api.Element.previousElementSibling
translation_of: Web/API/Element/nextElementSibling
---
{{APIRef("DOM")}}
**`Element.previousElementSibling`** は読み取り専用のプロパティで、この要素 ({{domxref("Element")}}) の親の子リスト内ですぐ前にある要素を返します。このノードがリストの最初のノードであった場合は `null` を返します。
## 構文
```js
// ゲッター
element = el.previousElementSibling;
// セッターなし。読み取り専用プロパティ
```
## 例
```html
<div id="div-01">Here is div-01</div>
<div id="div-02">Here is div-02</div>
<li>This is a list item</li>
<li>This is another list item</li>
<div id="div-03">Here is div-03</div>
<script>
let el = document.getElementById('div-03').previousElementSibling;
document.write('<p>Siblings of div-03</p><ol>');
while (el) {
document.write('<li>' + el.nodeName + '</li>');
el = el.previousElementSibling;
}
document.write('</ol>');
</script>
```
この例は読み込み時に、ぺ0時に以下のような出力を行います。
```
Siblings of div-03
1. LI
2. LI
3. DIV
4. DIV
```
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{domxref("Element.nextElementSibling")}}
|