在 jQuery 中 height 和 outerHeight 的区别是什么?
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>
广告