gpt4 book ai didi

javascript - 读取 CSS 高度/宽度值在 FF 中为 Xpx,在 IE 中为 'auto'

转载 作者:太空狗 更新时间:2023-10-29 12:29:45 26 4
gpt4 key购买 nike

Div 框尺寸是使用 jQuery 和以下代码测量的:

$(document).ready(function(){
var h = $("#testbox").css("height");
});

在 FF 中,它为我提供了 270px,在 IE auto 中。如何在不更改 CSS 的情况下测量 IE 中的实际 div 高度/宽度?​​

最佳答案

使用 .height() 和 .width()。

var h = $("#testbox").height();
var w = $("#testbox").width();

关于javascript - 读取 CSS 高度/宽度值在 FF 中为 Xpx,在 IE 中为 'auto',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1234500/

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