Cross-browser method for detecting the scrollTop of the browser window

前端 未结 11 1731
孤街浪徒
孤街浪徒 2020-11-27 12:38

What is the best cross-browser way to detect the scrollTop of the browser window? I prefer not to use any pre-built code libraries because this is a very simple script, and

11条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-27 13:06

    Or just simple as:

    var scrollTop = document.body.scrollTop || document.documentElement.scrollTop;
    

提交回复
热议问题