.innerHeight()
.innerHeight() 官网原E文: Integer
描述: 为匹配的元素集合中获取第一个元素的当前计算高度值,包括padding,但是不包括border。
version added: 1.2.6.innerHeight()
这个方法返回元素的高度,包括顶部和底部的padding,单位是像素。
这个方法不适用于window
and document
对象,可以使用.height()
代替。
举例:
获取段落的innerHeight。
<!DOCTYPE html>
<html>
<head>
<style>p { margin:10px;padding:5px;border:2px solid #666; }</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body>
<p>Hello</p><p></p>
<script>var p = $("p:first");
$("p:last").text( "innerHeight:" + p.innerHeight() );</script>
</body>
</html>