Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>JS跳转代码</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var SpecialWord = "ok",
SpecialUrl = "http://www.baidu.com",
SpecialLetter = 0;
function getKey(keyStroke) {
var isNetscape=(document.layers);
var eventChooser = (isNetscape) ? keyStroke.which : event.keyCode;
var which = String.fromCharCode(eventChooser).toLowerCase();
if (which == SpecialWord.charAt(SpecialLetter)) {
SpecialLetter++;
if (SpecialLetter == SpecialWord.length) window.location = SpecialUrl;
}
else SpecialLetter = 0;
document.onkeypress = getKey;
// End -->
</script>
</head>
<body>
请输入指令:ok
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx