aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/currentscript/index.html
blob: 17eb7fb52ea7dccb7ad09ca787a8a30bde789141 (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
---
title: Document.currentScript
slug: Web/API/Document/currentScript
tags:
  - API
  - DOM
  - Document
  - Property
  - Reference
  - プロパティ
translation_of: Web/API/Document/currentScript
---
<p>{{APIRef("DOM")}}</p>

<p><code><strong>Document.currentScript</strong></code> プロパティは、現在処理中で、 <a href="https://github.com/whatwg/html/issues/997">JavaScript モジュールではない</a>スクリプトの {{HTMLElement("script")}} 要素を返します。 (モジュールの場合は代わりに {{JSxRef("Statements/import%2Emeta", "import.meta")}} を使用してください。</p>

<p>重要なことですが、スクリプト内のコードがコールバックまたはイベントハンドラーとして呼び出されている場合は、 {{HTMLElement("script")}} 要素を参照しないことに注意してください。初期化時に処理されている要素のみを参照します。</p>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox notranslate">var <var>curScriptElement</var> = <var>document</var>.currentScript;
</pre>

<h2 id="Example" name="Example"></h2>

<p>次の例では、スクリプトが非同期で実行されているかどうかをチェックしています。</p>

<pre class="brush:js notranslate">if (document.currentScript.async) {
  console.log("非同期で実行中");
} else {
  console.log("同期で実行中");
}</pre>

<p><a href="/samples/html/currentScript.html">実際の表示を確認</a></p>

<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.html#dom-document-currentscript", "Document.currentScript")}}</td>
   <td>{{Spec2("HTML WHATWG")}}</td>
   <td>初回定義</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<div>{{Compat("api.Document.currentScript")}}</div>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li>{{JSxRef("Statements/import%2Emeta", "import.meta")}}</li>
 <li>{{HTMLElement("script")}}</li>
 <li>{{DOMxRef("document.onafterscriptexecute")}}</li>
 <li>{{DOMxRef("document.onbeforescriptexecute")}}</li>
</ul>