在沒有明確CSS 規則的情況下確定Div 高度
如果CSS 中沒有明確設定高度,則取得div 的高度可能會很困難。雖然 .height() jQuery 方法通常用於此目的,但它需要現有的 CSS 規則才能實現正確的功能。這是另一種方法:
jQuery 高度函數
jQuery 提供了一系列高度函數,即使沒有CSS 高度規則,也可以提供準確的高度測量:
使用演示
下面的程式碼片段演示了如何使用這些函數:
$(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 的計算高度顯示在 div 本身中,提供有關每個函數輸出的詳細資訊。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3