gpt4 book ai didi

jQuery 在调整大小时获取 div 的宽度

转载 作者:行者123 更新时间:2023-12-01 07:05:29 25 4
gpt4 key购买 nike

我正在尝试在调整大小时获取 div 的宽度并将其显示在控制台中,如下所示..

function matchHeight() {
var newHeight = jQuery("#container").height(); //where #grownDiv is what's growing
console.log(newHeight);
}


jQuery(window).on('resize', function(){
matchHeight();
});
#container{
background:tan;
width:100%;
height:500px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="container">
Container Content
</div>

它没有刷新值,我哪里出错了?

最佳答案

可能是因为您想要捕获宽度,而不是捕获高度......调整大小时不会改变。

function matchWidth() {
var newWidth = jQuery("#container").width(); //where #grownDiv is what's growing
console.log(newWidth);
}


jQuery(window).on('resize', function(){
matchWidth();
});

关于jQuery 在调整大小时获取 div 的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47025784/

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