jQuery outerHeight()方法
jQuery outerHeight()方法用于返回第一个匹配元素的外部高度。这个方法包括内边距和边框。
在上面的示例中,可以看到外部高度方法中包括了边框和内边距。
语法 :
$(selector).outerHeight(includeMargin)
jQuery outerHeight() 方法的参数
参数 | 描述 |
---|---|
includeMargin | 这是一个布尔值,指定是否包括边距。 |
- False: 指定不包括边距。这是默认值。
- True: 指定包括边距。
这是一个可选参数。
jQuery outerHeight()方法的示例1
让我们举一个例子来演示jQuery outerHeight()方法的效果。
<!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("Outer height of the div is: " + $("div").outerHeight());
});
});
</script>
</head>
<body>
<div style="height:100px;width:500px;padding:10px;margin:3px;border:1px solid blue;background-color:lightpink;"></div><br>
<button>Click here to get the outer height of the div</button>
</body>
</html>
jQuery outerHeight()方法的示例2
让我们通过一个示例来演示如何改变每个div的内部高度。
<!DOCTYPE html>
<html lang="en">
<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>