1
有沒有一個快速的方法來使用右箭頭鍵和左箭頭鍵來加載下一頁? 我的解決方案到目前爲止是:鍵盤導航加載頁面
$(document).ready(function() {
$("a.transition").click(function (event) {
event.preventDefault();
linkLocation = this.href;
$("body").fadeOut(20, redirectPage);
});
$("a.transitionB").click(function (event) {
event.preventDefault();
linkLocation = this.href;
$("body").fadeOut(20, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});
用2個看不見的鏈路層。但是我需要一些東西來控制轉換而不用點擊頁面,而是使用箭頭按鈕。
謝謝你的幫助。
你你們真棒,比你呢 – nrunit 2010-09-22 12:22:08