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.

oninput

oninput
型: スクリプトコード
このイベントは、ユーザが textbox にテキストを入力した時、送られます。このイベントはテキストの表示が変更されたとき呼び出されるため、ユーザが表示不可能なキーを押した場合は呼び出されません。

<!-- これは textbox に値が入力されるたびに、それが label のテキストに設定されます。 -->
<script language="javascript">
function setLabel(txtBox){
	document.getElementById('lbl').value = txtBox.value;
}
</script>
<label id="lbl"/>
<textbox oninput="setLabel(this);"/>

これは HTML ドキュメントで使用される onkeypress イベントに似ています。

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

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