gpt4 book ai didi

javascript - 如何刷新窗口宽度在 480px 到 768px 之间的页面?

转载 作者:行者123 更新时间:2023-11-30 16:20:29 25 4
gpt4 key购买 nike

我目前使用的代码:

// Resize when less than 768
$(document).ready(function(){
$(window).on('resize',function(){
if ($(window).width() < 768) {
location.reload(); // refresh page
}
else {
// Width greater than 768px for PC
}
});
});

但是当浏览器调整到小于 768px 时,这会不断地重新加载页面。是否有可能有一个代码只在浏览器说 480px 和 768px 之间调整大小时重新加载页面?谢谢!

最佳答案

当然可以:

// Resize when less than 768
$(document).ready(function(){
$(window).on('resize',function(){
if (($(window).width() > 480) && ($(window).width() < 768)) {
location.reload(); // refresh page
}
else {
// Width greater than 768px for PC
// Or width is smaller than 480 for mobile
}
});
});

关于javascript - 如何刷新窗口宽度在 480px 到 768px 之间的页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34820216/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com