28 lines
490 B
HTML
28 lines
490 B
HTML
<html>
|
|
<head>
|
|
<script language="JavaScript">
|
|
function keyHandler(e)
|
|
{
|
|
var pressedKey;
|
|
if (document.all)
|
|
{
|
|
e = window.event;
|
|
}
|
|
if (document.layers || e.which)
|
|
{
|
|
pressedKey = e.which;
|
|
}
|
|
if (document.all)
|
|
{
|
|
pressedKey = e.keyCode;
|
|
}
|
|
pressedCharacter = String.fromCharCode(pressedKey);
|
|
alert(' Character = ' + pressedCharacter + ' [Decimal value = ' + pressedKey + ']');
|
|
}
|
|
document.onkeyup = keyHandler;
|
|
</script>
|
|
</head>
|
|
<body>
|
|
Press any key.
|
|
</body>
|
|
</html> |