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.
我有一个 dojo 组合框元素,我填充了很多条目,因此组合框变得可滚动。当我用鼠标滚轮在组合框内滚动时,页面也在滚动。有没有办法防止这种情况?
dojo.connect(combo, 'onChange', function() { var dropDownMenu = combo.dropDown.domNode; if (dropDownMenu !== null) { dropDownMenu.addEventListener('mousewheel', function(event) { document.body.style.overflow = "hidden"; },false); } });