[34] DOM のイベントハンドラーは、 オブジェクトや要素の属性として1つ指定できる簡易版のイベントリスナーです。
[39] オブジェクトにあるものをイベントハンドラーIDL属性 (旧・イベントハンドラーDOM属性)、 要素にあるものをイベントハンドラー内容属性といいます >>35。
[61] イベントハンドラーの属性名は、イベント名に on
を付けたものです。
[97] イベントハンドラーは、イベントリスナーの特殊形です。 イベントハンドラーは特定の対象となるオブジェクトについて、 特定のイベント型に関する、 非捕獲フェーズ (bubbling フェーズまたは対象フェーズ) のイベントリスナーとして働きます。
[98] 例えば click
イベントに対応するイベントハンドラーの名前は
onclick
となります。 Window
オブジェクトには
onclick
属性があります。また a
要素にも onclick
属性があります。
[37] 任意のイベント型の名前に on
をつければ良いものではなく、
仕様で定義され、利用者エージェントが実装しているイベントハンドラーのみ機能します。
[99] 例えば foobar
というイベント型はどの仕様でも定義されていないので、 onfoobar
属性を設定しても、 (著者が特定の Webページのみで使われる独自のイベント型として使うのは自由ですが、)
foobar
イベントが dispatch されたときに呼び出されるわけではありません。
[100] 更に、 DOMContentLoaded
は HTML Standard で定義されているイベント型ではありますが、
onDOMContentLoaded
というイベントハンドラーはどこでも定義されていないので、
そのような属性を設定しても、 dispatch されたときに呼び出されるわけではありません。
[41] ほとんどの場合、イベントハンドラーIDL属性はその文脈オブジェクトのイベントハンドラーに、 イベントハンドラー内容属性はその要素のイベントハンドラーに対応します。
[106] 例外的に、 body
要素や frameset
要素のイベントハンドラーIDL属性やイベントハンドラー内容属性の一部は、
Window
オブジェクトのイベントハンドラーに対応します。
Window
に属さない body
要素のように、
対応するオブジェクトが存在していないイベントハンドラーIDL属性
>>35 やイベントハンドラー内容属性も存在します。
[36] HTML Standard は、「イベントハンドラーIDL属性が存在しないオブジェクトのイベントハンドラーを晒す場合」 という形で対応するオブジェクトが存在しない状態の動作も規定しています >>35。 イベントハンドラー内容属性の場合はなぜか明言されていません。
[40] イベントハンドラーIDL属性は、特定のイベントハンドラーに対応すると定義されている IDL属性です。
イベントハンドラーIDL属性の属性名は、イベントハンドラーの名前と同じです
(つまり on
+ イベント型です)。
[129] すべてのイベントハンドラーにイベントハンドラーIDL属性があります。
[200] イベントハンドラーIDL属性の型は、原則として
EventHandler
です。
[75] 型 EventHandler
は、
コールバック関数または null
です。
コールバック関数以外が指定された時は、 null
とみなされます
(TreatNonCallableAsNull
)。
コールバック関数は、 Event
1つを引数とし、任意 (any
) の返り値を持つものです。 >>35
[76] 例外として、
onerror
の型は OnErrorEventHandler
,
onbeforeunload
の型は
OnBeforeUnloadEventHandler
です。
OnErrorEventHandler
はエラーの報告用の引数を取ることもでき、
OnBeforeUnloadEventHandler
は DOMString
または
null
を返り値とします >>35。
[105] JavaScript では、 Function
を ErrorHandler
等のコールバック関数として使うことができます。
[42] イベントハンドラーIDL属性の取得器は、 そのイベントハンドラーイベントハンドラーについて、 次のようにしなければなりません >>35。
[46] イベントハンドラーIDL属性の設定器は、 そのイベントハンドラーイベントハンドラーについて、 次のようにしなければなりません >>35。
[47] イベントハンドラー内容属性は、特定のイベントハンドラーに対応すると定義されている内容属性で、 名前空間はnull名前空間で、局所名はイベントハンドラーの名前です >>35。
[130] イベントハンドラー内容属性は HTML、SVG、XUL の要素で定義されています。 イベントハンドラー内容属性があってイベントハンドラーIDL属性がないケースは今のところありません。 要素のイベントハンドラーでイベントハンドラー内容属性がないケースもありません。
[48] イベントハンドラー内容属性の属性値は、 JavaScript のコードであって、
自動セミコロン挿入を経て FunctionBody
生成規則に一致するようなものでなければなりません
>>35。
[146] 構文上の誤りが含まれる場合、最初のコンパイル時 (イベントが dispatch された時か、イベントハンドラーIDL属性の値を取得した時) に誤りの報告があります。
[147] 実行時には、原則として、 event
という名前の引数が1つ渡されます。
これはイベントオブジェクトです。
[152] scope chain は、近い順に (対象の要素, フォーム所有子, 大域オブジェクト) となります。 つまり、関数内で宣言された変数では無いものが参照された時、まず要素のメンバーと解釈します。 次に、要素の属するフォームのメンバーと解釈します。どちらでもなければ、 大域変数と解釈します。
[112] イベントハンドラー内容属性属性が設定された時、 そのイベントハンドラーイベントハンドラーについて、 次のようにします >>35。
[212] 位置について、 HTML Standard は属性の値を設定したスクリプトの位置と規定しています >>35。 構文解析器によって属性が設定された場合にどうするべきなのかは不明です。
[160] イベントハンドラー内容属性が削除された時、 そのイベントハンドラーイベントハンドラーについて、 次のようにします >>35。
... のいずれかです。初期値は null です。 >>35 イベントハンドラーIDL属性により、
またはイベントハンドラー内容属性により、null
以外の値に設定することができます。
[131] 内部生未コンパイルハンドラーは、
コンパイル前のスクリプト本体と、エラー報告の際に用いられるスクリプトの位置情報の組です。 >>35
これは実質的にはイベントハンドラー内容属性の属性値のことを言っています。
後述の通りイベントハンドラー内容属性は設定されただけではコンパイルされず、
実行時にコンパイルされることになります。 (コンパイル結果である Function
とは異なります。)
[213] 新しい値にイベントハンドラーの値を設定するには、次のようにします >>35。
null
に設定されている間は、
イベントリスナーは追加されません。また
null
に変更されたり、別の非 null
値に変更されたりしても、
イベントリスナーは登録されたままになります。
これはイベントリスナー間の実行順序に影響することになります。arguments.callee
でアクセスできるのはイベントハンドラーです。イベントリスナーやイベントハンドラー処理算法に JavaScript
からアクセスする方法はありません。イベントハンドラーを removeEventListener
しても、それ自体はイベントリスナーとして登録されていないので、削除できません。[88] MessagePort
と
ServiceWorkerContainer
の onmessage
は最初に設定された時にポートメッセージキューやクライアントメッセージキューが有効になる
(start
メソッドや startMessages
メソッドが呼ばれたかのように振る舞う)
という副作用があります。
[132] イベントハンドラーの現在値を取得は、 次のようにしなければなりません >>35。
null
以外の場合、NewObjectEnvironment(文書, 適用範囲)
の結果に設定します。null
以外の場合、null
以外の場合、NewObjectEnvironment(要素のフォーム所有子, 適用範囲)
の結果に設定します。NewObjectEnvironment(要素, 適用範囲)
の結果に設定します。FunctionBody
として構文解析した結果に設定します。FuncrionCreate
の結果に設定します。null
に設定します。[117] イベントハンドラー処理アルゴリズムは、 イベントハンドラーを呼び出すというイベントリスナーです。
イベントハンドラーイベントハンドラーとイベントオブジェクトイベントについて、 次のようにします >>35。
null
でなければ、error
で、
イベントのインターフェイスが
ErrorEvent
で、
イベントの現在対象が WindowOrWorkerGlobalScope
の場合、this
値error
で、
イベントのインターフェイスが
ErrorEvent
で、
イベントの現在対象が WindowOrWorkerGlobalScope
の場合、beforeunload
で、
イベントのインターフェイスが
BeforeUnloadEvent
の場合、null
以外なら、returnValue
が空文字列なら、returnValue
を、返り値に設定します。[198] 本アルゴリズムは、イベントハンドラーが最初に設定されたときにイベントリスナーとして登録されます。 それ以外では使われません。登録済みのイベントリスナーをスクリプトから取得する方法は用意されていませんから、 本アルゴリズムに相当する JavaScript 関数オブジェクトにスクリプトからアクセスする方法もありません。
[74] コールバックthis
値の規定と、 body
の onload
が Window
オブジェクトのイベントハンドラーであることから、
<body onload="alert(this)" onclick="alert(this)">... は文書の読み込み時に
"[object Window]"
が、クリック時に
"[object HTMLBodyElement]"
が >>35 alert
されることとなります。body
や frameset
のイベントハンドラーIDL属性、イベントハンドラー内容属性の一部MessagePort
と ServiceWorkerContainer
の onmessage
Window
/WorkerGlobalScope
の onerror
onbeforeunload
onmouseover
[8] この種の属性のリストは事象取扱器属性の一覧を参照してください。
[69] イベントハンドラーは、 addEventListener
で登録される一般のイベントリスナーと違って、
次のような制限があります。
[81] こういった制限もありますが、簡潔に記述でき多くの用途には十分でもあるので、 イベントハンドラーもよく使われています。
[84] イベントハンドラーは、当初から JavaScript の機能として存在していました。
[270] Navigator Scripting, , http://web.archive.org/web/19970606181855fw_/http://www28.netscape.com/eng/mozilla/2.0/handbook/javascript/script.html
JS 1.0
[271] null, , https://web.archive.org/web/20010208103254/http://home.netscape.com/eng/mozilla/3.0/handbook/javascript/getstart.htm#996824
JS 1.1
[5]
>>1-4 WinIE だとそれが“ちゃんと”はたらいて、 vbscript:
と書くと VBScript になったりしちゃいます。
748 名前:Name_Not_Found[sage] 投稿日:2005/10/08(土) 04:12:41 ID:???
HTML のイベント属性に javascript: を書くことについて。 - 文法的には、ただのラベルである。 - そこそこ誰でも知っていて、なんとなく使ったり読んだりしている。 - WinIE が、javascript, jscript, vbscript, vbs, perlscript に反応する。   (プラットフォームも含め、過不足あれば指摘してくれ。) - しかし、きちんとした仕様説明が見当たらない (探せなかっただけかもしれないが)。
ラベル ttp://www2u.biglobe.ne.jp/~oz-07ams/prog/ecma262r3/12_Statements.html#LabelledStatement   FOO: for ( .. ) for ( .. ) if ( .. ) continue FOO; におけるラベル FOO と同じ。 ラベルの例をもう一つ。   <p onclick="rubyscript:while (true)     for (var i = 0; i < 10; i++)     if (i == 6) break rubyscript;     alert(i);">alert(6)</p>
どうやら、良く練られた拡張ではなく、姑息な特例だと言わざるを得ない。 ;; + JavaScript の質問用スレッド vol.41 + http://pc8.2ch.net/test/read.cgi/hp/1127133050/
[9] Hawk's W3 Laboratory : DHTML Tips : イベントハンドラに関する考察 http://www.hawk.34sp.com/stdpls/dhtml/event-handler.html
http://web.archive.org/web/20061021223123/www.hawk.34sp.com/stdpls/dhtml/event-handler.html
- 更新日時
- 2004年09月22日
結論から言うと、この「属性の中身のコード」は、対象となる要素に対応するHTMLElementオブジェクトのプロパティに、関数の形で格納されています。イベント発生時にはそのオブジェクトのメソッドとして実行されるわけです。
実体が関数であることは、イベント内でargumentsを参照できることから分かります。更に一歩進んでarguments.calleeにアクセスすれば実体の関数そのものにアクセスできます。
以下の例では関数の内容を表示しています。alert(arguments.callee);という記述が "そのまま"表示されるのが確認できるでしょう。
<a href="http://hawk.34sp.com/" onmouseover="alert(arguments.callee);">リンク</a>ただし、実際に試してみれば分かりますが、表示内容(すなわち実装方法)はブラウザによって大きく2系統に分かれます。上記の例はIEでは以下のように表示されるはずです。
function anonymous() { alert(arguments.callee); }anonymous(匿名)とは無名のFunctionオブジェクトに仮に付けられた名です。つまりIEでは、単に属性値のスクリプトコードを実行するだけの関数が生成され、対象となるオブジェクトのプロパティに格納されることになります。
一方で、NN4.XおよびGeckoベースのブラウザでは以下のようになります。
function onmouseover(event) { alert(arguments.callee); }Operaではこうです。
function anonymous(event) { alert(arguments.callee); }KHTMLベースのブラウザではこうなります。
function (event) { alert(arguments.callee); }名前の有無や名前が無い場合の表現など、瑣末な違いはありますが、いずれもeventという仮引数が存在していることが大きな特徴です。この仮引数はイベントオブジェクト(NN4.Xにおいてはevent object、その他の場合はDOM2 EventsにおけるEventインターフェイスを実装したオブジェクト)を表しています。
NN4.Xのイベントモデルでも、DOM2 Eventsでも、イベントに関する情報はイベントオブジェクトの形で、イベントハンドラとして登録された関数の第一引数に渡されます。だからこのような形の関数になるのは理にかなっているのですが、そのとき仮引数の名前が”event”になることなどは特に標準化されていないので注意が必要です。
またこのeventという名前は、偶然にも?IEのwindow.eventと同じなので、
<a href="http://hawk.34sp.com/" onmouseover="foo(event);">リンク</a>このように記述すれば、関数fooにはブラウザを問わず第一引数にeventオブジェクトが渡されます(もっともfoo内での条件分岐は必要になりますが)。
window.event
[6] WinIE7, Opera, WebKit は対応しているみたいです。
[137] Bug 111602 – Remove window.event ( ( 版)) https://bugs.webkit.org/show_bug.cgi?id=111602
[138] window.event and Event.srcElement ( (Anne van Kesteren 著, 版)) http://lists.w3.org/Archives/Public/public-webapps/2013JanMar/0961.html
[151] XHTML m12n では XHTML Events Module が定義されており、 現在のイベントハンドラー内容属性が含まれていました。
[63] イベントハンドラー内容属性は HTML4 には一般的なものが含まれたものの、 DOM Events が標準化された後も改めて厳密に定義され直すことはなく、 Webブラウザーの実装は長らく明文化されないままでした。 イベントハンドラーIDL属性は Web Applications 1.0 まで言及もされていませんでした。
[67] そのため表示方法を記述する物理属性と同様に避けるべきだと主張する人達も00年代には少なくありませんでした。 当時の HTML WG も、イベントハンドラー内容属性にかわって XHTML Events 改め XML Events を開発し、それによって置き換えることを狙っていたようです。
[68] しかしイベントハンドラーが簡潔で便利でしたし、 W3C DOM の
addEventListener
と IE4 DOM の attachEvent
に分裂していたこの時代、 XML Events も含めどの方法も他の方法を完全に置き換える程の勢力は得られませんでした。
[13] (X)HTML5 Tracking ( 版) http://html5.org/tools/web-apps-tracker?from=4049&to=4050
[14] [whatwg] Additional onxxxx event attributes for DOM Level3 Events ( 版) http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2010-November/029252.html
[15] Web Applications 1.0 r5933 Be better about how we define the creation of scripts for event handler attributes (specifically, how we interact with the JS spec). ( ( 版)) http://html5.org/tools/web-apps-tracker?from=5932&to=5933
[16] [whatwg] on* attributes on DOM elements ( ( 版)) http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2011-June/032146.html
[17] IRC logs: freenode / #whatwg / 20110728 ( ( 版)) http://krijnhoetmer.nl/irc-logs/whatwg/20110728#l-242
[18] IRC logs: freenode / #whatwg / 20111117 ( ( 版)) http://krijnhoetmer.nl/irc-logs/whatwg/20111117
[19] [whatwg] API design restrictions due to barewords in onxxx="" attributes ( ( 版)) http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2011-November/033959.html
[20] Writing forward-compatible websites - MDN ( ( 版)) https://developer.mozilla.org/Writing_Forward_Compatible_Websites
[21] IRC logs: freenode / #whatwg / 20120427 ( ( 版)) http://krijnhoetmer.nl/irc-logs/whatwg/20120427#l-633
[22] IRC logs: freenode / #whatwg / 20120518 ( ( 版)) http://krijnhoetmer.nl/irc-logs/whatwg/20120518
[23] [proximity] HTML's WebIDL Function ( (Marcos Caceres 著, 版)) http://lists.w3.org/Archives/Public/public-device-apis/2012May/0283.html
[24] IRC logs: freenode / #whatwg / 20120620 ( ( 版)) http://krijnhoetmer.nl/irc-logs/whatwg/20120620#l-321
[25] Web Applications 1.0 r7235 Improve compatibiliy for legacy features. ( ( 版)) http://html5.org/tools/web-apps-tracker?from=7234&to=7235
[26] [whatwg] Specification unclear about how HTMLElement.prototype.onscroll's getter/setter should behave for "body" elements ( ( 版)) http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2012-December/038221.html
[27] Web Applications 1.0 r7560 Remove some IDL shadowing. See also bug 20225. ( ( 版)) http://html5.org/tools/web-apps-tracker?from=7559&to=7560
[28] Web Applications 1.0 r7561 Recent changes to body also apply to frameset. ( ( 版)) http://html5.org/tools/web-apps-tracker?from=7560&to=7561
[29] WICD Mobile 1.0 ( ( 版)) http://www.w3.org/TR/WICDMobile/#XHTML-event-attributes
[30] [whatwg] Specification unclear about how HTMLElement.prototype.onscroll's getter/setter should behave for "body" elements ( ( 版)) http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2013-January/038528.html
[31] Web Applications 1.0 r7638 Factor out some common event handler declarations in IDL. ( ( 版)) http://html5.org/tools/web-apps-tracker?from=7637&to=7638
[32] Web Applications 1.0 r7667 Clean up how we define event handlers that are shadowed for Window on <body>. ( ( 版)) http://html5.org/tools/web-apps-tracker?from=7666&to=7667
[33] Web Applications 1.0 r7668 Fix bug 18626 and actually do what the previous checkin was trying to do. ( ( 版)) http://html5.org/tools/web-apps-tracker?from=7667&to=7668
[86] Web Applications 1.0 r7933 Bring onbeforeunload handling closer to compatibility with the Web ( 版) http://html5.org/tools/web-apps-tracker?from=7932&to=7933
[87] Bug 20637 – Remove onfullscreen* from HTML ( ( 版)) https://www.w3.org/Bugs/Public/show_bug.cgi?id=20637
[89] Web Applications 1.0 r8097 Add more cross references to the new 'concept-window-document' thing, and clean up <frameset>'s event definitions (I always forget to update that when I'm updating <body>'s...). ( ( 版)) http://html5.org/tools/web-apps-tracker?from=8096&to=8097
[90] Web Applications 1.0 r2529 MAJOR CHANGES: Revamp the way scripts are specified, along with their interaction with resolving relative URLs, etc. Give enough detail to justify objects in the DOM not being garbage collected randomly when still in use. Define script groups, to handle scripts going away during document.open() and session history navigation. Define why and how setTimeout(), database transactions, etc, handle page transitions. Drop the terms 'with' and 'without' script, use script is 'enabled'/'disabled' instead. Define 'unload' and 'beforeunload'. Rework how onfoo= and .onfoo event handler attributes are defined. Rework how the content model of <noscript> is defined. Reword the way javascript: is defined to use the new terminology. Add a few notes of things that came up while I was doing all that.]] ( ( 版)) http://html5.org/tools/web-apps-tracker?from=2528&to=2529
[91] [whatwg] Should onfoo event handler properties be on Element or HTMLElement? ( ( 版)) http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2013-October/040992.html
[92] Web Applications 1.0 r8303 Move the event handler content attribute compiling logic to later in the pipeline, for better consistency with Firefox/Safari (and other browsers, though to a lesser extent). ( ( 版)) http://html5.org/tools/web-apps-tracker?from=8302&to=8303
[93] Web Applications 1.0 r8282 OnBeforeUnloadEventHandler is supposed to allow null return values (and some markup error fixes, oops) ( ( 版)) http://html5.org/tools/web-apps-tracker?from=8281&to=8282
[94] XML Binding Language (XBL) 2.0 ( ( 版)) http://www.w3.org/TR/2007/CR-xbl-20070316/#event0
[95] Web Applications 1.0 r8375 Rearrange requirements for handling internal raw uncompiled handlers ( ( 版)) http://html5.org/tools/web-apps-tracker?from=8374&to=8375
[149] >>96 によって改訂されるまでは、イベントハンドラー内容属性は設定時にコンパイルが行われるようになっていました。
[50] スクリプトが有効な閲覧文脈にある Document
が所有する要素のイベント・ハンドラー内容属性が設定された時、次のように処理しなければなりません
>>35。
FunctionBody
として構文解析可能でないか、
構文解析によって early error を検出した場合は、イベント・ハンドラー内容属性を誤りに設定し、
停止します。"use strict"
) から始まるかどうかを strict とします。Window
の onerror
属性なら event, source, lineno, colno, error の5つ、それ以外なら
event の1つScope := NewObjectEnvironment(要素の Document
, 大域環境)
Scope := NewObjectEnvironment(要素のフォーム所有子, Scope)
Scope := NewObjectEnvironment(要素, Scope)
[60] イベント・ハンドラー内容属性を誤りに設定するとは、対応するイベント・ハンドラーを内部誤り値に設定することをいいます。 内部誤り値は誤り条件を表現するもので、 イベント・ハンドラー内容属性が設定された資源の URL や行番号を記録するものです。 >>35
[150] >>96 によってイベントハンドラー内容属性のコンパイルは初めて呼び出された時まで遅延されるようになりました。
[154] Re: Spec for [Global] does not seem to be quite web-compatible, and none of the UAs are really compatible with each other ( (Boris Zbarsky 著, 版)) http://lists.w3.org/Archives/Public/public-script-coord/2013OctDec/0416.html
[155] The "initialization" steps for Web browsers ( ( 版)) https://mail.mozilla.org/pipermail/es-discuss/2014-July/038426.html
[156] svg2: changeset 698:568ea4166630 ( ( 版)) https://dvcs.w3.org/hg/svg2/rev/568ea4166630b31bb0e5c7024493f127e4aa664f
[157] 911477 – Implement DOM4 methods: prepend(), append(), before(), after() and replace() ( ( 版)) https://bugzilla.mozilla.org/show_bug.cgi?id=911477
[158] Add on* attributes · e793402 · whatwg/notifications ( ( 版)) https://github.com/whatwg/notifications/commit/e793402a13e125a865f5a6a053d4cfd03c242193
[102] Web Applications 1.0 r8880 Fix callback logic to reference Web IDL and use the right conventions. ( 版) https://html5.org/r/8880
[103] Pointer Events ( 版) https://dvcs.w3.org/hg/pointerevents/raw-file/tip/pointerEvents.html#h-extensions-to-the-element-interface
[104] Pointer Events ( 版) https://dvcs.w3.org/hg/pointerevents/raw-file/tip/pointerEvents.html#h-extensions-to-the-element-interface
[110] Bug 20713 – Consider defining window.event and Event.srcElement ( 版) https://www.w3.org/Bugs/Public/show_bug.cgi?id=20713
[111] Define the ontouch* event handler attributes · Issue #11 · w3c/touch-events ( 版) https://github.com/w3c/touch-events/issues/11
[113] Clarify some wording around event handlers · whatwg/html@434cbda ( 版) https://github.com/whatwg/html/commit/434cbda5377f6ce3debbeb05104ba94a0eee75da
[121] Update ECMAScript and IDL integration · whatwg/html@550c57f ( 版) https://github.com/whatwg/html/commit/550c57f186dd73784a8e4660440db2f642e37c0e
[123] Revert "Update ECMAScript and IDL integration" · whatwg/html@3a23548 ( 版) https://github.com/whatwg/html/commit/3a235480f1979fcddc65e07fe5a3be7bed428d17
[159] Close #384: add CSP hooks to handle inline events and style · whatwg/html@920c918 ( 版) https://github.com/whatwg/html/commit/920c9183a7990968ecac1aeedae22391f3438791
[162] Update ECMAScript and IDL integration · whatwg/html@52f96c4 ( 版) https://github.com/whatwg/html/commit/52f96c455a53763a7fe00162c067da6adb20e62c
[163] Rewrite script execution on top of ES · whatwg/html@4891d18 ( 版) https://github.com/whatwg/html/commit/4891d18aaf2df1d40aa61f467a5a10cfc19dd85d
IE6とOpera9では動いたのですが
FireFox3.0.4でうまく動きません
何か間違ってるのでしょうか?
<form method="post">
<a href="" onclick="submit(); return false;">hoge</a>
</form>
[165] Report errors to developer consoles, not users · whatwg/html@a6d04ea ( 版) https://github.com/whatwg/html/commit/a6d04ea7652f5ad1b61e4ab95de490f51511bffe
[136] Add <script type="module"> and module resolution/fetching/evaluation · whatwg/html@cd1a9fb ( 版) https://github.com/whatwg/html/commit/cd1a9fb1e83f7d0bc30be8b34ecdaf444a0b19a4
[166] Adding event handler attributes cut/copy/paste · whatwg/html@efe130a ( 版) https://github.com/whatwg/html/commit/efe130a0566a43067659c1d92bf712b151db0727
[167] Remove capture from event handler attributes as it is false by default · whatwg/html@096661f ( 版) https://github.com/whatwg/html/commit/096661f04d071933a79533089d82c316eff6509a
[168] Clarify settings object, realm, and global relationships · whatwg/html@0866f1b ( 版) https://github.com/whatwg/html/commit/0866f1b3f4b4ea5a99a30909e9bbe557dea0b460
[169] Add the 'unsafe-hash-attributes' source expression. · w3c/webappsec-csp@a2bb43f ( 版) https://github.com/w3c/webappsec-csp/commit/a2bb43f407949a860f027a97e232c755b51029ab
[170] Add a source argument to CSP's inline behavior algorithm · whatwg/html@e0863d9 ( 版) https://github.com/whatwg/html/commit/e0863d93ec8c0b48f1c44d8d81a409eb08dee28c
[171] Event handlers should return null if scripting is disabled · whatwg/html@0d634e4 ( 版) https://github.com/whatwg/html/commit/0d634e41ff1ab0684e0b9faa2cb7461e0db3b8a1
[173] Be more precise about nested and discarded browsing contexts (domenic著, ) https://github.com/whatwg/html/commit/39118df640ad4a3f03f164fb5ffe0a56316297be
[174] Spec for getter of event handler attribute has some nonsense about exceptions · Issue #1957 · whatwg/html () https://github.com/whatwg/html/issues/1957
[175] Set the Realm when compiling event handler IDL attributes (domenic著, ) https://github.com/whatwg/html/commit/09a8c470b84108a42c0920c2e968a1d7c20a6edd
[185] (X)HTML5 Tracking ( 版) http://html5.org/tools/web-apps-tracker?from=4012&to=4013
[186] Fix onbeforeunload event handler processing (domenic著, ) https://github.com/whatwg/html/commit/fb7e621eab8a437df7ac524e547e31e117b7fce5
[199] Fix event callback invocation to set entry/incumbent correctly (domenic著, ) https://github.com/whatwg/html/commit/037f35d4a114d5543d5caa17689cbe1b095790cf
[235] Fix event handler processing algorithm special cases (domenic著, ) https://github.com/whatwg/html/commit/c065e991b65e10a1fc77ba77fed9f0822ff6858b
[240] Meta: export event handler <dfn>s (tobie著, ) https://github.com/whatwg/html/commit/d0154579f6237358a7a642ae59b894e9116c4fbd
[241] Meta: export event handler DFNs. by tobie · Pull Request #2936 · whatwg/html () https://github.com/whatwg/html/pull/2936
[242] Move EventHandler to DOM spec · Issue #509 · whatwg/dom () https://github.com/whatwg/dom/issues/509
[243] Editorial: Cut dev-edition event-handler “must”s (sideshowbarker著, ) https://github.com/whatwg/html/commit/d4d1178845e17721b21ff6fd242b0be78a3de9a0
[244] Editorial: Cut event-handler “must”s in dev edition by sideshowbarker · Pull Request #3170 · whatwg/html () https://github.com/whatwg/html/pull/3170
[245] DOM handler and import · Issue #32 · tc39/proposal-dynamic-import () https://github.com/tc39/proposal-dynamic-import/issues/32
Attribute names starting with on (such as onclick or onmouseover) are disallowed in AMP HTML. The attribute with the literal name on (no suffix) is allowed.
[247] Editorial: add "add an event listener" hook (annevk著, ) https://github.com/whatwg/dom/commit/2bdabb15de8112d9783cf393a3d6c37911149f77
[248] Editorial: add "add an event listener" hook by annevk · Pull Request #596 · whatwg/dom () https://github.com/whatwg/dom/pull/596
[249] Make event handlers share a code path with addEventListener() (annevk著, ) https://github.com/whatwg/html/commit/9a2a66cd8f8ddfa4c35d784bcda5c080e82aad38
[250] Make event handlers share a code path with addEventListener() by annevk · Pull Request #3561 · whatwg/html () https://github.com/whatwg/html/pull/3561
[251] Standardize window.event (miketaylr著, ) https://github.com/whatwg/dom/commit/c69d7c0fb8796de884652c517825122d12901ef5
[252] Standardize srcElement, returnValue, and window.event · Issue #334 · whatwg/dom () https://github.com/whatwg/dom/issues/334
[253] Add window.event as a legacy compat requirement by miketaylr · Pull Request #407 · whatwg/dom () https://github.com/whatwg/dom/pull/407
[254] Revise event listener removal in document.open() (TimothyGu著, ) https://github.com/whatwg/html/commit/823f4bcb5a4d80b231c81503dbc7c71c209617e5
[255] Revise event listener removal in document.open() by TimothyGu · Pull Request #3893 · whatwg/html () https://github.com/whatwg/html/pull/3893
[256] Event-based form participation (tkent-google著, ) https://github.com/whatwg/html/commit/1375c0ca5dd95ecb2ae5ad1d8d7bcc9bc75981c0
[257] Always set [[ScriptOrModule]] to null for event handler functions (domenic著, ) https://github.com/whatwg/html/commit/1d6eb9933701ea65f7a9dd670d37a2faa17b8f12
[259] import() behaviour in event handlers is path dependent · Issue #4267 · whatwg/html () https://github.com/whatwg/html/issues/4267
[260] Handle module resolution when there is no active script by domenic · Pull Request #4181 · whatwg/html () https://github.com/whatwg/html/pull/4181
[261] Always set [[ScriptOrModule]] to null for event handler functions by domenic · Pull Request #4302 · whatwg/html () https://github.com/whatwg/html/pull/4302
[262] Add onslotchange · Issue #3487 · whatwg/html () https://github.com/whatwg/html/issues/3487
[265] Use [[GlobalEnv]] in event handler's current value (shvaikalesh著, ) https://github.com/whatwg/html/commit/e51cf93ad10e91d82f69a037928ae6b09969907d
[266] Event handler FunctionCreate uses an undefined variable "global environment" · Issue #2467 · whatwg/html () https://github.com/whatwg/html/issues/2467
[267] Editorial: use [[GlobalEnv]] in event handler's current value by shvaikalesh · Pull Request #4756 · whatwg/html () https://github.com/whatwg/html/pull/4756
[268] Editorial: Remove 'Strict' arg from FunctionCreate call (jmdyck著, ) https://github.com/whatwg/html/commit/39dd2044f5371cabf4bd9cbb1c24b5a3a08c4166
[148] Editorial: Remove 'Strict' arg from FunctionCreate call by jmdyck · Pull Request #4712 · whatwg/html () https://github.com/whatwg/html/pull/4712