在沒有CSS 高度規則的情況下確定元素的高度
在元素沒有CSS 高度規則的情況下,獲取元素的高度可能會很困難它的高度。 jQuery .height() 方法需要預先定義的 CSS 高度值,在這種情況下似乎不夠。但是,還有其他方法可以確定元素的高度。
jQuery .height()
與普遍看法相反,jQuery .height() 不依賴關於 CSS 高度定義。它計算元素的計算高度,使其適合沒有明確指定 CSS 高度的場景。
DEMO
.height():檢索元素的高度沒有 padding、border 或 margin。
.innerHeight():檢索元素的高度,包括 padding,但不包括 border 和 margin。
.outerHeight():檢索元素的高度,包括 border,但不包括margin.
.outerHeight(true): 檢索元素的高度,包括邊框和邊距。
現場示範的程式碼片段
$(function() {
var $heightTest = $('#heightTest');
$heightTest.html('Div style set as "height: 180px; padding: 10px; margin: 10px; border: 2px solid blue;"')
.append('Height (.height() returns) : ' $heightTest.height() ' [Just Height]
')
.append('Inner Height (.innerHeight() returns): ' $heightTest.innerHeight() ' [Height Padding (without border)]
')
.append('Outer Height (.outerHeight() returns): ' $heightTest.outerHeight() ' [Height Padding Border]
')
.append('Outer Height (.outerHeight(true) returns): ' $heightTest.outerHeight(true) ' [Height Padding Border Margin]
')
});
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3