jQuery 中 height 和 innerHeight 有什么区别?
jQuery 中的 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:300px;width:450px;padding:20px;margin:1px;border:1px solid red; background-color:gray;"></div><br> <button>Get Height of div</button> </body> </html>
jQuery 中的 innerHeight
innerHeight( ) 方法获取第一个匹配元素的内部高度(不包含边框,包括内边距)。
示例
你可以尝试运行以下代码以了解如何在 jQuery 中使用 innerHeight
<html> <head> <title> jQuery innerHeight()</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script> $(document).ready(function() { $("div").click(function () { var color = $(this).css("background-color"); var height = $(this).innerHeight(); $("#result").html("Inner Height is <span>" + height + "</span>."); $("#result").css({'color': color, 'background-color':'gray'}); $("#result").height( height ); }); }); </script> <style> #div1{ margin:10px; padding:12px; border:2px solid #666; width:60px; } #div2 { margin:15px; padding:5px; border:5px solid #666; width:60px; } #div3 { margin:20px; padding:4px; border:4px solid #666; width:60px; } #div4 { margin:5px; padding:3px; border:3px solid #666; width:60px; } </style> </head> <body> <p>Click on any square:</p> <span id = "result"> </span> <div id = "div1" style = "background-color:blue;"></div> <div id = "div2" style = "background-color:pink;"></div> <div id = "div3" style = "background-color:#123456;"></div> <div id = "div4" style = "background-color:#f11;"></div> </body> </html>
广告