jQuery 中高度和外邊緣高度的區別是什麼?
jQuery 中的 height
height() 是容器的垂直測量,例如,div 的高度。它不包括內邊距、邊框和邊距。
要在 jQuery 中獲取元素的高度,請使用 jQuery 中的 height() 方法。
示例
你可以嘗試執行以下程式碼以獲取高度
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ alert("Height of div element: " + $("div").height()); }); }); </script> </head> <body> <div style="height:100px;width:350px;padding:10px;margin:10px;border:1px solid red; background-color:blue;"></div><br> <button>Get Height of div</button> </body> </html>
jQuery 中的 outerHeight()
outerHeight() 返回第一個匹配元素的外部高度。它包含內邊距和邊框。
示例
你可以在 jQuery 中嘗試執行以下程式碼以獲取外邊緣高度
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ alert("Outer Height of div element: " + $("div").outerHeight()); }); }); </script> </head> <body> <div style="height:200px;width:450px;padding:10px;margin:10px;border:1px solid red; background-color:blue;"></div><br> <button>Get Outer Height of div</button> </body> </html>
廣告