gpt4 book ai didi

javascript 如何动态获取高度(当我调整浏览器大小时)

转载 作者:太空宇宙 更新时间:2023-11-04 00:10:15 25 4
gpt4 key购买 nike

我正在尝试从可调整的 div 中获取 height 因为我想在 css 中添加溢出样式,当高度值是大于设定值。当您调整此 div 更改的窗口高度时。我将用一些图片来解释这一点:

http://imageshack.us/a/img801/2113/somethingo.png

http://imageshack.us/a/img7/7503/blebvle.png

主要问题是如何动态获取?我的意思是,当您调整自己的窗口大小时等?

最佳答案

如果您能够使用 jQuery,我建议您使用 window.onresize 方法并计算 div 的高度。

$(document).ready(function()
{
$(window).on("resize", function()
{
$("#myDiv").text("My height is " + $("#myDiv").height());
});
});​

看看我为您创建的这个 fiddle :http://jsfiddle.net/9ftGe/

希望这就是你想要的。

关于javascript 如何动态获取高度(当我调整浏览器大小时),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13334873/

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