我需要找到Android股票浏览器的可用高度:屏幕高度 - 状态栏高度。我试过了:
this.initialHeight = (window.innerHeight < window.innerWidth ? window.innerHeight : window.innerWidth);
也尝试过:
this.initialHeight = (window.outerHeight < window.outerWidth ? window.outerHeight : window.outerWidth);
但是他们两个都给了我相同的结果(360度在横向模式下)。如何使用纯javascript找到浏览器的实际可用高度?