Skip to content

Commit

Permalink
2023/04/07 時点の英語版に基づき新規翻訳
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Jul 26, 2023
1 parent 7cf1e44 commit 5e7392b
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 0 deletions.
43 changes: 43 additions & 0 deletions files/ja/web/api/element/afterscriptexecute_event/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
title: "Element: afterscriptexecute イベント"
short-title: afterscriptexecute
slug: Web/API/Element/afterscriptexecute_event
l10n:
sourceCommit: bbf7f25f9cf95fb154e2740a9fdc9c02818981bf
---

{{APIRef}}{{Non-standard_header}}

> **警告:** このイベントは仕様の初期バージョンでの提案でした。頼りにしないでください。
**`afterscriptexecute`** イベントは、スクリプトの実行が完了した後に発行されます。

これは Gecko (Firefox) 固有のイベントです。

このイベントはキャンセルできません。

## 構文

このイベント名を {{domxref("EventTarget.addEventListener", "addEventListener()")}} 等のメソッドで使用するか、イベントハンドラープロパティを設定するかしてください。

```js
addEventListener("afterscriptexecute", (event) => {});

onafterscriptexecute = (event) => {};
```

## イベント型

一般的な {{domxref("Event")}} です。

## 仕様書

どの仕様書にも含まれていません。

## ブラウザーの互換性

{{Compat}}

## 関連情報

- [`beforescriptexecute`](/ja/docs/Web/API/Element/beforescriptexecute_event) イベント
41 changes: 41 additions & 0 deletions files/ja/web/api/element/beforescriptexecute_event/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
title: "Element: beforescriptexecute イベント"
short-title: beforescriptexecute
slug: Web/API/Element/beforescriptexecute_event
l10n:
sourceCommit: bbf7f25f9cf95fb154e2740a9fdc9c02818981bf
---

{{APIRef}}{{Non-standard_header}}

> **警告:** このイベントは仕様の初期バージョンでの提案でした。頼りにしないでください。
**`beforescriptexecute`** イベントは、スクリプトが実行しようとされているときに発生します。このイベントをキャンセルすると、スクリプトの実行が阻止されます。

これは Gecko (Firefox) 固有のイベントです。

## 構文

このイベント名を {{domxref("EventTarget.addEventListener", "addEventListener()")}} 等のメソッドで使用するか、イベントハンドラープロパティを設定するかしてください。

```js
addEventListener("NameOfTheEvent", (event) => {});

onNameOfTheEvent = (event) => {};
```

## イベント型

一般的な {{domxref("Event")}} です。

## 仕様書

どの仕様書にも含まれていません。

## ブラウザーの互換性

{{Compat}}

## 関連情報

- [`afterscriptexecute`](/ja/docs/Web/API/Element/afterscriptexecute_event) イベント

0 comments on commit 5e7392b

Please sign in to comment.