Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有人可以帮助我为用户是否在屏幕左侧(例如 100 像素)内创建一个事件,然后输出一条警报消息(用于测试目的)。
感谢您在这方面的任何帮助,非常感谢您!
您可以为 DOM 元素注册一个滚动监听器,例如在 jQuery 中:
$('#someelement').scroll(function() { // do something })
见这里。
此外,您可以获得滚动距离;再次在 jQuery 中:
$('#someelement').scrollLeft()
结合这些来实现所需的行为。