上一页 返回教程首页 下一页
名称
热键
实例
教程
第一步:拷贝下面的代码到你的html文件的<head>和</head>之间;
<script language="JavaScript1.2"> var travel=true var hotkey=104 var destination="index.htm" if (document.layers) document.captureEvents(Event.KEYPRESS) function backhome(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=backhome </script>
说明:其中hotkey=104的值就是热键字母的键值,你可以修改为你需要的热键 destination="index.htm"就是按了“热键”后链接的文件名。
你可以充分发挥想象力,将这个技巧用于许多方面,比如每页的前进或后退功能。