我有一个简单的脚本,该脚本使用左右箭头移至下一个和上一个博客文章。

var nextEl = document.getElementById("pagination__next__link");
var prevEl = document.getElementById("pagination__prev__link");

document.onkeyup = function(e) {

    if (nextEl !== null) {
        if (e.keyCode === 37) {
            window.location.href = nextEl.getAttribute('href');
        }
    }
    if (prevEl !== null) {
        if (e.keyCode === 39) {
            window.location.href = prevEl.getAttribute('href');
        }
    }
    return false;
};

但是当我将文字inputtextarea放在焦点上时,它也可以使用。专注时禁用键盘快捷键的最佳方法是什么?

谢谢!

最佳答案

禁止将事件传播到文档

nextEl.onkeyup = prevEl.onkeyup = function(e){ e.stopPropagation(); };

07-27 17:45