如何使用jQuery检测水平滚动?
这将获得所有滚动:
$(window).scroll(function () { alert('in'); });
我想只是水平的。
解决方法
这似乎工作。
var lastScrollLeft = 0; $(window).scroll(function() { var documentScrollLeft = $(document).scrollLeft(); if (lastScrollLeft != documentScrollLeft) { console.log('scroll x'); lastScrollLeft = documentScrollLeft; } });