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。 |
function(index,currentheight) | 这是一个可选参数。它用于指定一个返回所选元素新高度的函数。 |
- index: 它提供了元素在集合中的索引位置。
- currentheight: 它提供了所选元素的当前高度。
jQuery height()方法示例1
让我们通过一个例子来演示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("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>显示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>