-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
files/ja/web/api/element/afterscriptexecute_event/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
41
files/ja/web/api/element/beforescriptexecute_event/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) イベント |