$(selector).height()
$(selector).height(value)
$(selector).height(function(index,currentheight))
参数 | 说明 |
value | 这是必填参数。它以px,em,pt等指定高度。默认单位为px。 |
function(index,currentheight) | 这是一个可选参数。这用于指定一个函数,该函数返回所选元素的新高度。 index:它提供元素在集合中的索引位置。 currentHeight:它提供了所选元素的当前高度。 |
<!DOCTYPE html>
<html>
<head>
<script src="/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 bianchenghao6.com</div></div><br>
<button>Display the height of div</button>
</body>
</html>
<!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="/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>