<div id="wraptop">
<img id="imgtop" src="imgtop/01.jpg" alt="img">
<div id="divcenter">
...
</div>
</div>


的CSS

#divcenter{
    position:absolute;
    z-index:1;
    width:50%;
    left:25%;
    top:25px;
}


js

$(window).load(function() {
    var a = $("#imgtop").height() - 30;
    alert (a);  // 637
    $("#divcenter").css("height", a + "px"); //doesn't work
    var b = $("#divcenter").height();
    alert (b);  // doesn't work
});


divcenter的高度不变。
此外,第一个警报有效,但第二个则无效。
控制台为空。

任何想法 ?

最佳答案

尝试这个

$(window).load(function() {
var a = $("#imgtop").height() - 30;
alert (a);  // 637
$("#divcenter").css({"height": a }); //doesn't work
var b = $("#divcenter").height();
alert (b);  // doesn't work
});

10-05 20:59