gpt4 book ai didi

javascript - 如何使用此属性选择子 div?

转载 作者:行者123 更新时间:2023-11-28 12:08:02 24 4
gpt4 key购买 nike

我的代码是:

<div class="FHD">   
<div class="FHFD">
<div class="FHD">
<div class="FHVD">AA</div>
<div class="FHFD">AB</div>
</div>
</div>
<div class="FHVD">B</div>
</div>

我有一个高度为 x 的 div FHD,FHFD 是高度 y。
现在我想使用 js 将高度作为 x-y 应用于 FHVD,这样即使 FHD 高度发生变化,也只有 FHVD 高度应该发生变化,而 FHFD 不会改变其高度。

我想将代码概括为

window.onresize = function(event) {

$('.FHC').each(function(){
//here i want to get the height of FHFD div using
//$(this +' .FHFD").height()
//somthing like this

});
}

提前致谢...

最佳答案

试试这个:

window.onresize = function(event) {

$('.FHC').each(function(){
var heightFHFD = $(this).find('.FHFD').height()
});
}

关于javascript - 如何使用此属性选择子 div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19628368/

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