确定网页可见大小的方法

发布于 2024-09-04 16:25:48 字数 133 浏览 6 评论 0原文

有没有办法知道页面可见部分的大小?

有提供此服务的服务吗?我的意思是,不仅仅是屏幕分辨率,还有可用的浏览器区域。当用户有很多浏览器工具栏时,留给网页的区域就会减少。另一方面,使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

乜一 2024-09-11 16:25:48

使用 Javascript,您可以获得 Window.InnerHeight 和 Window.InnerHeight。 .内部宽度

Using Javascript, you can get the Window.InnerHeight & .InnerWidth

我喜欢麦丽素 2024-09-11 16:25:48

您必须使用 Javascript 或 JQuery 来执行此操作。

这是一个类似(已回答)问题

You'll have to use Javascript or JQuery to do so.

Here is a similar (answered) question

酒浓于脸红 2024-09-11 16:25:48

我在 StackOverflow 上发现了另一个使用 jQuery 的实现。

$(window.top).width()  
$(window.top).height()

PS 只是不要忘记括号,因为我总是错过它们。

参考:
https://stackoverflow.com/a/7008807

I found another implementation on StackOverflow itself which used jQuery.

$(window.top).width()  
$(window.top).height()

P.S. Just don't forget the brackets as i always missed them.

Reference:
https://stackoverflow.com/a/7008807

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文