0
我使用WordPress中的熱鍵功能在項目中創建鍵盤導航。雖然鍵盤功能正在工作,但由於某種原因,它只會滾動到下一個項目,而不是轉到上一個項目。當我用鼠標點擊箭頭時,一切正常,但由於某些原因,使用鍵盤時無法正常工作。帶WordPress的jQuery熱鍵next-post
這裏是鏈接到項目
http://geoffgeoff.com/dialect-skateboards-identity/
這是我的js代碼
$(document).ready(function() {
// This uses the Hotkeys jQuery plugin. See below for
// the native jQuery alternative.
$(document).bind('keydown', 'left', function() {
var url = $('#left_arrow a').attr('href');
if (url) {
window.location = url;
}
});
$(document).bind('keydown', 'right', function() {
var url = $('#right_arrow a').attr('href');
if (url) {
window.location = url;
}
});
});
謝謝!我會試試看!我感謝你的幫助! – Geoff