--- title: element.onbeforescriptexecute slug: Web/API/Document/onbeforescriptexecute tags: - DOM translation_of: Web/API/Document/onbeforescriptexecute ---
{{ApiRef}}{{gecko_minversion_header("2")}}

概要

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

構文

document.onbeforescriptexecute = funcRef;

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

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

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

実際の表示を確認

仕様書

関連情報