确定网页可见大小的方法
有没有办法知道页面可见部分的大小?
有提供此服务的服务吗?我的意思是,不仅仅是屏幕分辨率,还有可用的浏览器区域。当用户有很多浏览器工具栏时,留给网页的区域就会减少。另一方面,使用 Chrome 可以最大化可用空间。
谢谢
Is there a way for knowing what size was the visible portion of a page?
Are there any services that provide this? I mean, not just screen resolution, but available browser area. When a user has a lot of browser toolbars the area left for the webpage gets reduced. On the other hand, using Chrome may maximize the available space.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 Javascript,您可以获得 Window.InnerHeight 和 Window.InnerHeight。 .内部宽度
Using Javascript, you can get the Window.InnerHeight & .InnerWidth
您必须使用 Javascript 或 JQuery 来执行此操作。
这是一个类似(已回答)问题
You'll have to use Javascript or JQuery to do so.
Here is a similar (answered) question
我在 StackOverflow 上发现了另一个使用 jQuery 的实现。
PS 只是不要忘记括号,因为我总是错过它们。
参考:
https://stackoverflow.com/a/7008807
I found another implementation on StackOverflow itself which used jQuery.
P.S. Just don't forget the brackets as i always missed them.
Reference:
https://stackoverflow.com/a/7008807