按“A”键,页面将跳转到指定的网页,只能在IE中运行
在网页<body>区添加以下代码
按“A”键,页面将跳转
<SCRIPT language="JavaScript">
<!--
var hotkey=97
var destination="http://www.sharejs.com";
if (document.layers)
document.captureEvents(Event.KEYPRESS)
function Helpor_net(e){
if (document.layers){
if (e.which==hotkey)
window.location=destination;
}
else if (document.all){
if (event.keyCode==hotkey)
window.location=destination;
}
}
document.onkeypress=Helpor_net;
//-->
</SCRIPT>




