jQuery .height
zwróci wysokość elementu. Nie potrzebuje definicji CSS, ponieważ określa obliczoną wysokość.
PRÓBNY
Można użyć .height()
, .innerHeight()
lub outerHeight()
w oparciu o to, czego potrzebują.
.height()
- zwraca wysokość elementu bez dopełnienia, obramowania i marginesu.
.innerHeight()
- zwraca wysokość elementu z dopełnieniem, ale bez obramowania i marginesu.
.outerHeight()
- zwraca wysokość elementu div wraz z obramowaniem, ale wyklucza margines.
.outerHeight(true)
- zwraca wysokość elementu div wraz z marginesem.
Sprawdź poniższy fragment kodu, aby zobaczyć wersję demonstracyjną na żywo. :)
$(function() {
var $heightTest = $('#heightTest');
$heightTest.html('Div style set as "height: 180px; padding: 10px; margin: 10px; border: 2px solid blue;"')
.append('<p>Height (.height() returns) : ' + $heightTest.height() + ' [Just Height]</p>')
.append('<p>Inner Height (.innerHeight() returns): ' + $heightTest.innerHeight() + ' [Height + Padding (without border)]</p>')
.append('<p>Outer Height (.outerHeight() returns): ' + $heightTest.outerHeight() + ' [Height + Padding + Border]</p>')
.append('<p>Outer Height (.outerHeight(true) returns): ' + $heightTest.outerHeight(true) + ' [Height + Padding + Border + Margin]</p>')
});
div { font-size: 0.9em; }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div id="heightTest" style="height: 150px; padding: 10px; margin: 10px; border: 2px solid blue; overflow: hidden; ">
</div>
height()
potrzebna jest reguła CSS?