把下面代码copy入你html文件的<head>和</head>中再按一下b键试试:
<script>
var travel=true
var hotkey=98 /* hotkey即为热键的键值,是ASII码,这里98代表b键 */
var destination="../index.htm" /* 在此定义热键对应的页面 */
if (document.layers)
document.captureEvents(Event.KEYPRESS)
function gogo(e){
if (document.layers){
if (e.which==hotkey&&travel)
window.location=destination
}
else if (document.all){
if (event.keyCode==hotkey)
window.location=destination
}
}
document.onkeypress=gogo
</script>