Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>键盘事件全面控制</title>
<STYLE TYPE="text/css">
TD {text-align:center}
</STYLE>
<SCRIPT LANGUAGE="JavaScript">
function init() {
document.onkeydown = showKeyDown
document.onkeyup = showKeyUp
document.onkeypress = showKeyPress
}
function showKeyDown(evt) {
CSS代码...
xxxxxxxxxx
JS代码...