jQuery outerHeight() 方法用于返回第一个匹配元素的外部高度。该方法包括内边距和边框。
在上面的示例中,您可以看到边框和填充都包含在 outerHeight() 方法中。
语法
$(selector).outerHeight(includeMargin)
参数
参数 | 说明 |
---|---|
includeMargin | 这是一个布尔值,它指定是否包括边距。
|
例子
例1
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
alert("Outer height of the div is: " + $("div").outerHeight());
});
});
</script>
</head>
<body>
<div style="height:100px;width:500px;padding:10px;margin:3px;border:1px blue;background-color:lightpink;"></div><br>
<button>点击获取outerHeight</button>
</body>
</html>
例2
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>outerHeight demo</title>
<style>
div {
width: 60px;
padding: 10px;
height: 100px;
float: left;
margin: 5px;
background: Orange;
cursor: pointer;
}
.mod {
background: green;
cursor: default;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<div>A</div>
<div>B</div>
<div>C</div>
<div>D</div>
<div>E</div>
<script>
var modHeight = 80;
$( "div" ).one( "click", function() {
$( this ).outerHeight( modHeight ).addClass( "mod" );
modHeight -= 8;
});
</script>
</body>
</html>