gpt4 book ai didi

jquery - 获取div的真实高度(Jquery)

转载 作者:行者123 更新时间:2023-12-05 09:18:52 26 4
gpt4 key购买 nike

我想知道一个div的真实高度。

如果我要求 $var.height() 他只是告诉我修复的 css 高度。

如何获取 div 的实际高度而不是固定的 css 高度。

最佳答案

你试过 outerHeight() 了吗,也许这对你有帮助,试试这个

$(document).ready(function() {
$("button").click(function() {
alert("Outer height of div: " + $("div").outerHeight());
});
});
div {
height: 100px;
width: 300px;
padding: 10px;
margin: 3px;
border: 1px solid blue;
background-color: lightblue;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>

<div></div><br>

<button>Display the outer height of div</button>
<p>outerHeight() - returns the outer height of an element (includes padding and border).</p>

关于jquery - 获取div的真实高度(Jquery),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43062057/

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