当用户调整窗口大小时刷新页面

发布于 2024-12-28 21:10:34 字数 150 浏览 0 评论 0原文

当用户调整窗口大小时,如何自动刷新页面(使用 JS/jQuery)?

(这听起来肯定是一件奇怪的事情,但我有充分的理由想要这样做:总之,Dailymotion 视频不能像 YouTube 视频那样通过 JS 动态调整大小,但它们的大小可以通过 JS 根据窗口大小设置)

How can I automatically refresh the page (with JS/jQuery) whenever the user resizes the window ?

(it must sound like a weird thing to do but I have a good reason to want this : in summary, Dailymotion videos cannot be resized by JS dynamically as YouTube videos can, but their size can be set by JS based on the window size)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

黯淡〆 2025-01-04 21:10:34
window.onresize = function(){window.location.reload();}
window.onresize = function(){window.location.reload();}
如若梦似彩虹 2025-01-04 21:10:34

在某些浏览器中,调整大小时会不断触发 resize 事件,因此您需要一个 去抖 事件。当该事件发生时,有很多方法来刷新页。

In some browsers the resize event is triggered continually while resizing, so you need a debounced event. When that event goes off, there are many ways to refresh the page.

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