要想在你的網頁上加上一個快捷鍵,那就試試吧 - 中國WEB開發者網絡 (http://www.webasp.net) -- 網頁特效 (http://www.webasp.net/javascript/) --- 要想在你的網頁上加上一個快捷鍵,那就試試吧 (http://www.webasp.net/javascript/1/225.htm) |
| -- 發佈日期: 2004-06-18 |
| <!-- 網頁特效代碼由[中國WEB開發者網絡:http://www.ChinaWebDev.com]提供! --> <!-- 要實現此效果需要 2 個步驟: --> <!-- 第 1 步: --> <!-- 把下面的代碼加到<HEAD></HEAD>區域中: --> <SCRIPT language="JavaScript"> <!-- var hotkey=97 var destination="http://www.webasp.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 //--> </SCRIPT> <!-- 第 2 步: --> <!-- 把下面的代碼加到<BODY></BODY>區域中: --> 按一個鍵盤「A」,頁面將轉到首頁。 |
| webasp.net |