キーボードの A キーを押して、スクリプト ハウスのホームページに移動してください [Ctrl A すべて選択 注: 外部 Js を導入する必要がある場合は、 を実行するために更新する必要があります] <!-- var hotkey=97 var destination="http://www.jb51.net" 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("回车"); } } -->