if (typeof window.addEventListener === 'function') {
window.addEventListener('scroll', demo);
}
else if (typeof window.attachEvent === 'object') {
document.documentElement.attachEvent('onscroll', demo);
}
function demo(eve) {
eve.preventDefault ? eve.preventDefault() : (eve.returnValue = false);
}
嗨伙计们
onscroll时如何防止默认事件
我的代码不起作用
我想禁用滚动,当控制滚动条和&按键盘&滚动鼠标。
我不会说英语,我是stackoverflow的新手。
请理解XD。