ScrollTop not working in IE

前端 未结 5 843
自闭症患者
自闭症患者 2020-12-19 00:37

Anyone have any ideas why scrollTop isn\'t working in IE?

It works in Chrome fine, and I don\'t know about firefox. (The idea of this script is to have an autoscroll

5条回答
  •  一个人的身影
    2020-12-19 01:08

    Solution for EDGE needs to set scrollTop on scrollingElement document property:

    document.scrollingElement.scrollTop= x; // x is integer value
    

    But you have to ensure, that CSS on HTML element has set overflow to default value (visible):

    html {
        overflow: visible;
    }
    

提交回复
热议问题