我想添加滚动事件侦听器或 touchstart 事件侦听器。最初我使用触摸事件来停用滚动事件侦听器,如下面的代码所示:
window.addEventListener('scroll', scrollStart, false);
window.addEventListener('touchstart', touchStart, false);
function scrollMenu() {
// do something
}
function touchStart(e) {
window.removeEventListener('scroll', scrollStart);
// do something
}
但我意识到在某些情况下,滚动事件会在页面加载后立即触发。因此,我不能使用上述方法。是否有另一种方法来检查浏览器是否支持触摸事件侦听器而不添加事件?