0
這裏是我的代碼:如何設置元素的高度與其內容相同?
$("#topbar").click(function() {
$(this).animate({
height: ($(this).height() == 45) ? 20 : 45
}, 200);
});
#topbar {
background: orange;
color: white;
display:block;
width:100%;
text-align:center;
height:20px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id='topbar'>
toggle me
<br>
some explanations
<br>
some more explanation
</div>
正如你看到的,當你點擊橙色框,其高度將增加(反之亦然)。但是45
對於當前內容來說還不夠高。其實這個盒子的內容是動態的。所以我想要設置一個與其內容高度相同的高度。
我該怎麼做?
'高度:($(本).height()== 20)? this.scrollHeight:20' – Jai