blob: 16b0a68a32777aa8a6aa160e87e371ef6959eb3f (
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
|
---
title: Document.scripts
slug: Web/API/Document/scripts
tags:
- API
- Document
- HTML DOM
- Property
- Reference
- Script
- プロパティ
translation_of: Web/API/Document/scripts
---
<div>{{APIRef("DOM")}}</div>
<p>{{domxref("Document")}} インターフェイスの <strong><code>scripts</code></strong> プロパティは、<span class="seosummary">文書中の {{HTMLElement("script")}} 要素のリストを返します。</span>返されるオブジェクトは単一の {{domxref("HTMLCollection")}} オブジェクトです。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">var <var>scriptList</var> = <var>document</var>.scripts;
</pre>
<h3 id="Value" name="Value">値</h3>
<p>{{domxref("HTMLCollection")}} です。これを使用して、リスト中のすべての要素を配列のように取得することができます。</p>
<h2 id="Example" name="Example">例</h2>
<p>ページ内の {{HTMLElement("script")}} 要素の存在を確認する例を以下に示します。</p>
<pre class="brush:js">let scripts = document.scripts;
if (scripts.length) {
alert("このページには script 要素があります。");
}
</pre>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', '#dom-document-scripts', 'Document.scripts')}}</td>
<td>{{ Spec2('HTML WHATWG') }}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<div>{{Compat("api.Document.scripts")}}</div>
|