我正在制作一个画廊并试图弄清楚如何对箭头键进行编程以导航画廊。
因此,按向左箭头将转到上一个图像 url:
function window.location = 'http://www.example.com/prevphoto.php';
按向右箭头将转到下一个图像 url。
function window.location = 'http://www.example.com/nextphoto.php';
更新(感谢 Haxxed 为我指明了正确的方向)这是我所在的位置,但它不起作用。你能看出为什么吗?
$('body').keypress(function (e) {
if (e.which == 37) {
// Left Arrow Pushed
window.location = "/prevphoto.php";
} else if (e.which == 39) {
// Right Arrow Pushed
window.location = "/nextphoto.php";
}
});