当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery height()用法及代码示例


jQuery height() 方法用于返回第一个元素的当前计算高度或设置每个匹配元素的高度。换句话说,您可以说 height() 方法有两个用途:

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

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

这个方法是一个很常见的jQuery维度。

before() 和 insertBefore() 两种方法都用于执行相同的任务。它们之间的主要区别在于语法以及内容和目标的位置。

用法

返回高度:

$(selector).height()

要设置高度:

$(selector).height(value)

使用函数设置高度:

$(selector).height(function(index,currentheight))

jQuery height() 方法的参数

参数 描述
Value 这是一个强制性参数。它以 px、em、pt 等为单位指定高度。它的默认单位是 px。
函数(索引,当前高度) 这是一个可选参数。这用于指定返回所选元素的新高度的函数。
  • Index:它提供集合中元素的索引位置。
  • currentHeight:它提供所选元素的当前高度。

jQuery height() 方法示例

让我们以一个例子来演示jQuery height() 方法。

返回高度:

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        alert("Height of div:" + $("div").height());
    });
});
</script>
</head>
<body>
<div style="height:100px;width:200px;padding:10px;margin:3px;border:1px solid blue;background-color:lightpink;"><div class="div">Hello Guys!<br/> This is javatpoint.com</div></div><br>
<button>Display the height of div</button>
</body>
</html>

jQuery height() 示例 2

设置高度:

此示例将展示如何设置特定高度。

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>height demo</title>
  <style>
  div {
    width:50px;
    height:100px;
    float:left;
    margin:5px;
    background:rgb(255,140,0);
    cursor:pointer;
  }
  </style>
  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<script>
$( "div" ).one( "click", function() {
  $( this ).height( 50 ).css({
    cursor:"auto",
    backgroundColor:"green"
  });
});
</script>
</body>
</html>




相关用法


注:本文由纯净天空筛选整理自 jQuery height()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。