Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

GlobalEventHandlers.oninput

この記事は編集レビューを必要としています。ぜひご協力ください

window 上の input イベントのためのイベントハンドラです。input イベントは、 <input> 要素の値が変化したときに発生します。

このイベントはバブルです。window でサポートされている場合、<input> 要素でも同様にサポートされています。

<script>

window.addEventListener('input', function (e) {
 console.log("keyup event detected! coming from this element:", e.target);
}, false);

</script>

<input placeholder="disabled">

仕様

仕様 状態 コメント
WHATWG HTML Living Standard
oninput の定義
現行の標準 初期定義。

ブラウザ実装状況

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本サポート (有) 2 9 10 (有)
機能 Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本サポート ? ? ? ? (有)

関連項目

ドキュメントのタグと貢献者

 このページの貢献者: YuichiNukiyama
 最終更新者: YuichiNukiyama,