Fires when the user presses a key.
![]() |
Syntax
| HTML Attribute | <element onkeydown = "handler(event)"> |
|---|---|
| Event Property | object.onkeydown = handler; |
| addEventListener Method | object.addEventListener("keydown", handler, useCapture) |
Event information
| Synchronous | No |
|---|---|
| Bubbles | No |
| Cancelable | No |
Event handler parameters
- pEvtObj [in]
-
Type: IHTMLEventObj
Standards information
- HTML 4.01 Specification, Section 18.2.3
Remarks
You can cancel all keys that fire the onkeydown event in HTML Applications, including most accelerator keys, such as ALT+F4.
Returns a number specifying the keyCode of the key that was pressed.
To invoke this event, do one of the following:
- Press any keyboard key.
Examples
This example uses the onkeydown event to cancel input from the keyboard.
Code example: http://samples.msdn.microsoft.com/workshop/samples/author/dhtml/refs/onkeydown.htm
<script type="text/javascript">
function fnTrapKD(){
if(oTrap.checked){
oOutput.innerText+="[trap = " + event.keyCode + "]";
event.returnValue=false;
}
else{
oOutput.innerText+=String.fromCharCode(event.keyCode);
}
}
</script>
<input type="checkbox" id="oTrap">
<input id="oExample" type="text" onkeydown="fnTrapKD()">
<textarea id="oOutput" rows="10" cols="50">
</textarea>
See also
- a
- abbr
- address
- area
- audio
- b
- bdo
- blockQuote
- body
- button
- canvas
- caption
- cite
- code
- custom
- dd
- del
- div
- dl
- document
- dt
- em
- fieldSet
- form
- hn
- hr
- i
- img
- input type=button
- input type=checkbox
- input type=file
- input type=image
- input type=password
- input type=radio
- input type=reset
- input type=submit
- input type=text
- kbd
- label
- legend
- li
- map
- object
- ol
- p
- pre
- q
- rt
- ruby
- s
- samp
- select
- small
- source
- span
- strong
- sub
- sup
- table
- tBody
- td
- textArea
- tFoot
- th
- tHead
- tr
- u
- ul
- var
- video
- window
- onkeyup
Send comments about this topic to Microsoft
Build date: 11/29/2012
