我有一个Angular指令需要在ELEMENT上的滚动事件上执行某些操作(plz不要说在文档上执行此操作。不是选项)。这个元素上的CSS有“overflow-y:visible”所以我现在改为“overflow:auto”进行测试。在IE 11上,我无法触发滚动事件,但在Chrome中,事情正常。
app.directive('infiniteScroller', ['$document', function($document){
return {
restrict: 'AE',
link: function($scope, $element, $attrs){
var elm = document.querySelector('.class-for-some-div');
var elm2 = $($element).closest('.class-for-some-div');
console.log('infiniteScroller initialized, querysel, jquery', elm, elm2);
elm.onscroll = function(event) {
console.log('in bind scroll');
};
elm.addEventListener('scroll', function() {
console.log('addEventListener scroll');
},false);
// elm.attachEvent('onscroll',function() {
// console.log('attachEvent onscroll');
// }); //doesn't work on Chrome or IE
elm2.bind('DOMMouseScroll', function() {
console.log('bind DOMMouseScroll');
});
elm2.bind('wheel', function() {
console.log('bind wheel');
});
// elm2.bind('scroll', function() {
// console.log('bind scroll');
// });
}
};
}]);
正如你所看到的,我正在尝试各种各样的东西,但只有IE中的'wheel'事件console.logs而没有其他人这样做。为什么IE不会触发'scroll'事件而只触发'wheel'事件?我只在IE控制台上看到'绑定轮'。也对其他IE版本(9+)的作用感兴趣。请帮忙。
答案 0 :(得分:0)
我在IE中有类似的问题。
看起来当具有水平滚动的div的内容不可见而不启动事件时。 不工作的考试:
<div class="horizontal_scroller_container" style="width:500px;">
<div class="horizontal_scroller" style="height:17px;overflow:scroll;">
<div style="width: 6450px;"> </div>
</div>
</div>
工作考试:
<div class="horizontal_scroller_container" style="width:500px;">
<div class="horizontal_scroller" style="overflow:scroll;">
<div style="width: 6450px; height:1px;"> </div>
</div>
</div>
这是一个显示问题和解决方案的小提琴:https://jsfiddle.net/1zzgnec6/3/