Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

element.onbeforescriptexecute

概要

HTML 文書内で宣言された <script> 要素内のコードの実行開始直前に発生するイベントをハンドリングします。appendChild() などを用いるなどして動的に追加された script 要素ではこのイベントは発生しません。

構文

document.onbeforescriptexecute = funcRef;
  • funcRef : イベント発生時に呼ばれる関数への参照。イベントの target 属性は実行される script 要素に設定されます。

// ※ logMessage 関数は定義済みとする

function starting(e) {
  logMessage("スクリプト実行開始(ID:" + e.target.id + ")");
}

document.addEventListener("beforescriptexecute", starting, true);

実際の表示を確認

仕様書

関連情報

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, khalid32, ethertank
 最終更新者: khalid32,