接收键盘指令的脚本
按A就会跳转到地图名片的网页,请按A
<SCRIPT language="JavaScript">
<!--
var hotkey=97
var destination="http://mc.mapabc.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=backhome
onkeydown="javascript:onenter();"
function onenter(){
if(event.keyCode==13){
alert("回车");
}
}
</SCRIPT>
相关文章
WindiCSS实现加载windi.config.ts配置文件详解
这篇文章主要为大家介绍了WindiCSS实现加载windi.config.ts配置文件详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-02-02
最新评论