我在其中的div
元素更改后更新高度时遇到问题。
基本上我有三个文件:
索引.html:
<!DOCTYPE html>
<head>
<title>Template1</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="jquery.js"></script>
<script src="respond.js"></script>
</head>
<body>
<div id="wrapper">
<img class= "img_center_big" src = "img.png">
</div>
</body>
</html>
样式.css:
body
{
width:100%;
}
img
{
max-height:1000px;
}
#wrapper
{
background-color: yellow;
display: block;
margin: 0 auto;
}
响应.js:
$("#wrapper").ready(function(){
console.log($("#wrapper").height());
$("#wrapper .img_center_big").width($("#wrapper").width() * 0.9 );
$("#wrapper").height("auto");
console.log($("#wrapper").height());
});
问题是$("#wrapper").height()
,即使在更改之后也是一样的。有什么解决办法吗?我环顾四周,但找不到答案。
在使用 jQuery 更改组件后,我想获取 div 的高度。
编辑:在帖子中更改了文件名,打错了。