aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/onafterscriptexecute
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2022-02-22 00:12:14 +0000
committerMDN <actions@users.noreply.github.com>2022-02-22 00:12:14 +0000
commit6acf87987baea4675dbd1d5586663959e742cc03 (patch)
tree83b489d9467dc18464207bbec4a8e5eaf9c804cd /files/ja/web/api/document/onafterscriptexecute
parent92e543f7c53602f7b0ed8ba0788995632adf9601 (diff)
downloadtranslated-content-6acf87987baea4675dbd1d5586663959e742cc03.tar.gz
translated-content-6acf87987baea4675dbd1d5586663959e742cc03.tar.bz2
translated-content-6acf87987baea4675dbd1d5586663959e742cc03.zip
[CRON] sync translated content
Diffstat (limited to 'files/ja/web/api/document/onafterscriptexecute')
-rw-r--r--files/ja/web/api/document/onafterscriptexecute/index.html50
1 files changed, 0 insertions, 50 deletions
diff --git a/files/ja/web/api/document/onafterscriptexecute/index.html b/files/ja/web/api/document/onafterscriptexecute/index.html
deleted file mode 100644
index 33b98c0a0c..0000000000
--- a/files/ja/web/api/document/onafterscriptexecute/index.html
+++ /dev/null
@@ -1,50 +0,0 @@
----
-title: Document.onafterscriptexecute
-slug: Web/API/Document/onafterscriptexecute
-tags:
- - API
- - DOM
- - Non-standard
- - Reference
- - プロパティ
- - 標準外
-translation_of: Web/API/Document/onafterscriptexecute
----
-<div>{{ApiRef("DOM")}}{{non-standard_header}}</div>
-
-<p><strong><code>Document.onafterscriptexecute</code></strong> プロパティは、静的な {{HTMLElement("script")}} 要素のスクリプトの実行が終了したときに呼び出される関数を参照します。要素が {{domxref("Node.appendChild()", "appendChild()")}} などで動的に追加された場合には呼び出されません。</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="syntaxbox"><var>document</var>.onafterscriptexecute = <var>funcRef</var>;
-</pre>
-
-<p><var>funcRef</var> は関数の参照で、イベントが発行されると呼び出されます。イベントの <code>target</code> 属性が、実行が完了した {{HTMLElement("script")}} 要素に設定されます。</p>
-
-<h2 id="Example" name="Example">例</h2>
-
-<pre class="brush: js">function finished(e) {
- logMessage(`Finished script with ID: ${e.target.id}`);
-}
-
-document.addEventListener('afterscriptexecute', finished, true);
-</pre>
-
-<p><a href="/samples/html/currentScript.html">ライブ例を表示</a></p>
-
-<h2 id="Specification" name="Specification">仕様書</h2>
-
-<ul>
- <li><a href="http://www.whatwg.org/specs/web-apps/current-work/#the-script-element">HTML5</a></li>
-</ul>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
-
-<p>{{Compat("api.Document.onafterscriptexecute")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li>{{domxref("Document.onbeforescriptexecute")}}</li>
- <li>{{domxref("Document.currentScript")}}</li>
-</ul>