Mobile browsers can't get to the top height.

The responsive layout used in

finds out how to get the height at the top of the browser by using the following methods on the mobile browser. Can"t you use these in mobile browsers? my Orbon mobile browser
document.body.scrollTop
document.body.clientHeight

Mar.10,2021

you can take a look at this https://blog.csdn.net/zxf1359.


here is a compatible way to learn about it.

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