diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 12:07:59 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 12:07:59 +0100 |
commit | 6ef1fa4618e08426b874529619a66adbd3d1fcf0 (patch) | |
tree | 890e3e27131be010d82ef957fa68db495006cb0e /files/ja/web/api/globaleventhandlers/onreset | |
parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
download | translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.gz translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.bz2 translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.zip |
unslug ja: move
Diffstat (limited to 'files/ja/web/api/globaleventhandlers/onreset')
-rw-r--r-- | files/ja/web/api/globaleventhandlers/onreset/index.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/files/ja/web/api/globaleventhandlers/onreset/index.html b/files/ja/web/api/globaleventhandlers/onreset/index.html new file mode 100644 index 0000000000..c9862667e8 --- /dev/null +++ b/files/ja/web/api/globaleventhandlers/onreset/index.html @@ -0,0 +1,57 @@ +--- +title: window.onreset +slug: Web/API/Window/onreset +tags: + - DOM + - Gecko + - Gecko DOM Reference + - Window +translation_of: Web/API/GlobalEventHandlers/onreset +--- +<div> + {{ApiRef}}</div> +<h2 id="Summary" name="Summary">概要</h2> +<p>フォームの <code>reset</code> イベントに対応するイベントハンドラです。</p> +<h2 id="Syntax" name="Syntax">構文</h2> +<pre class="syntaxbox">window.onreset = <var>funcRef</var>; +</pre> +<h3 id="Parameters" name="Parameters">引数</h3> +<ul> + <li><var>funcRef</var> : 関数への参照、または関数式</li> +</ul> +<h2 id="Example" name="Example">例</h2> +<pre class="brush:html"><!DOCTYPE html> +<html lang="ja"> +<head> +<meta charset="UTF-8" /> +<title>onreset のテスト</title> + +<script> +function reg() { + window.onreset = hit; +} + +function hit() { + alert('リセットイベントが発生しました。'); +} +</script> + +</head> +<body onload="reg();"> + +<form> + <div> + <textarea></textarea> + </div> + <div> + <input type="reset" value="reset" /> + </div> +</form> + +</body> +</html> +</pre> +<h2 id="Notes" name="Notes">注記</h2> +<p>reset イベントは、ユーザがフォーム内のリセットボタン (<code><input type="reset"/></code>) をクリックした際に発生します。</p> +<h2 id="Specification" name="Specification">仕様</h2> +<p>標準仕様書には含まれていません。</p> |