gpt4 book ai didi

jquery - 使用 jquery 窗口大小动态调整元素大小

转载 作者:行者123 更新时间:2023-12-03 22:55:38 24 4
gpt4 key购买 nike

我已经查看了有关此主题的许多问题,但似乎无法找出我的代码有什么问题。任何帮助将不胜感激!

$(window).resize(function(){
var newwidth = $(window).innerWidth();
var newheight = $(window).innerHeight();
$("#element").height(newheight).width(newwidth);
});

如果调整窗口大小,我会尝试将 #element 的大小调整为与窗口相同的高度和宽度。

最佳答案

关于.innerWidth(),来自 docs :

This method is not applicable to window and document objects; for these, use .width() instead.

有相同的note也适用于 .innerHeight()

所以你需要使用.width().height():

$(window).resize(function(){
var newwidth = $(window).width();
var newheight = $(window).height();
$("#element").height(newheight).width(newwidth);
});

关于jquery - 使用 jquery 窗口大小动态调整元素大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11367109/

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