gpt4 book ai didi

javascript - jQuery 在后面调整大小

转载 作者:行者123 更新时间:2023-11-28 10:13:45 25 4
gpt4 key购买 nike

我有这段代码,它允许我在调整浏览器大小时更改样式表:

            $(window).resize(function () {
var width = $(window).width();
var height = $(window).height();

if ((width <= 1280) && (height <= 800)) {
$("link[rel=stylesheet]:not(:first)").attr({ href: "Styles/Home-1024.css" });
}
else if ((width > 1280) && (height > 800)) {
$("link[rel=stylesheet]:not(:first)").attr({ href: "Styles/Home.css" });
}
});

它工作正常,但当浏览器返回到其原始大小时,我试图再次更改样式表。

最佳答案

你可以尝试:

$(window).live("resize", function(){

});

关于javascript - jQuery 在后面调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7009816/

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