标签:doc his else 滚动 com 引入 div ons 不可用
ag-grid 有自己的滚动事件,所以引入其中的单元格组件的下拉滚动有的会不好使,具体原因因项目需求原因未能及时探究从根本上解决,故代码层面处理一下。等后续再继续讨论
// 宿主事件--监听滚轮 @HostListener(‘mousewheel‘, [‘$event‘]) _mousewheel($event) { if (this.openScroll) { // 手动设置界面滚动 const scrollN = $event.wheelDelta; const div = document.getElementsByClassName(‘combotree-container‘)[0]; if (div) { if (scrollN > 0 && div.scrollTop > 0) { // 向上 div.scrollTop = div.scrollTop - scrollN > 0 ? div.scrollTop - scrollN : 0; } else if (scrollN < 0 && div.scrollTop < div.scrollHeight) { // 向下 div.scrollTop = div.scrollTop - scrollN > div.scrollHeight ? div.scrollHeight : div.scrollTop - scrollN; } } } }
标签:doc his else 滚动 com 引入 div ons 不可用
原文地址:https://www.cnblogs.com/guofan/p/14101779.html