jQuery height() 方法

实例

返回 <div> 元素的高度:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("button").click(function(){
  8. alert("Height of div: " + $("div").height());
  9. });
  10. });
  11. </script>
  12. </head>
  13. <body>
  14. <div style="height:100px;width:300px;padding:10px;margin:3px;border:1px solid blue;background-color:lightblue;"></div><br>
  15. <button>显示 div 的高度</button>
  16. </body>
  17. </html>

定义与用法

height() 方法设置或返回选定元素的高度。

当使用此方法 返回 高度时,它将返回第一个匹配元素的高度。

当使用此方法 设置 高度时,将设置所有匹配元素的高度。

如下图所示,此方法不包括 padding(填充), border(边框), 或 margin(边距)。

相关方法:


语法

返回高度:

  1. $(selector).height()

设置高度:

  1. $(selector).height(value)

使用函数设置高度:

  1. $(selector).height(function(index,currentheight))
参数描述
value必填。设置高度时以px、em、pt等为单位指定高度
默认单位是 px 像素
function(index,currentheight)可选。指定一个函数,用于返回选定元素的新高度
  • index - 返回元素在集合中的索引位置
  • currentheight - 返回选定元素的当前高度

更多实例

如何使用不同的单位设置元素的高度

如何使用函数增加元素的高度

如何返回文档和窗口元素的当前高度

如何使用 width()、height()、innerHeight()、innerWidth()、outerWidth() 和 outerHeight()

分类导航