网(LieHuo.Net)教程 JavaScript接收键盘指令示例,按下键盘上不同的键,程序会跳转到不同的网页,本例中按下B键后,为跳转到网首页,实现按键跳转的功能。
<html><head><title>请按下键盘上的 B 键,会跳转到网的首页</title><head><body>请按下键盘上的 B 键,会跳转到网的首页<SCRIPT language="JavaScript"><!--var hotkey=98var destination="http://www.wfuyu.com/"if (document.layers)document.captureEvents(Event.KEYPRESS)function backhome(e){if (document.layers){if (e.which==hotkey)window.location=destination}else if (document.all){if (event.keyCode==hotkey)window.location=destination}}document.onkeypress=backhomeonkeydown="javascript:onenter();"function onenter(){if(event.keyCode==13){alert("回车");}}</SCRIPT></body></html><br /><center>网更多教程,请访问:<a href=http://www.wfuyu.com/ target=_blank _fcksavedurl="http://www.wfuyu.com/ target=_blank">http://www.wfuyu.com/</a></center>提示:可修改后代码再运行!
上一篇 四条重要秘诀让你的网站吸引浏览者
下一篇 MyEclipse安装ExtJS插件Spket IDE的教程