当用户调整窗口大小时刷新页面
当用户调整窗口大小时,如何自动刷新页面(使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在某些浏览器中,调整大小时会不断触发 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.