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

前端 未结 11 1759
孤街浪徒
孤街浪徒 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 12:58

    I've been using window.scrollY || document.documentElement.scrollTop.

    window.scrollY covers all browsers except IEs.
    document.documentElement.scrollTop covers IE.

提交回复
热议问题