问题 I'm currently building a React app with a scroll handler for loading more data in an infinite scroll component. I'm using window.addEventListener('scroll', this.someScrollHandler, false); (with throttling), which works on every browser except for IE — no event is handled. In fact, testing in the IE console, the below code, then scrolling, results in no logging: window.addEventListener('scroll', function() { console.log('testing') }, false); What's going on with scroll events and IE? 回答1: My