jQuery 中的 outerHeight() 方法用于查找指定元素的外部高度。元素的外部高度包括填充和边框。
用法:
$(selector).outerHeight(includeMargin)
参数:此方法接受可选的单个参数 includeMargin。它包含布尔值,用于指定是否包含边距。如果 includeMargin 设置为 true,则包含边距,否则不包含边距。默认情况下,includeMargin 设置为 false。
下面的示例说明了 jQuery 中的 outerWidth() 方法:
例:此示例显示元素的外部高度。
<!DOCTYPE html>
<html>
<head>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<!-- Script to return outer height -->
<script>
$(document).ready(function() {
$("button").click(function() {
alert("Outer height of div:"
+ $("div").outerHeight());
});
});
</script>
<!-- Style to create box using padding
and margin -->
<style>
.geeks {
height:80px;
width:200px;
padding:5px;
margin:5px;
border:2px solid black;
background-color:green;
text-align:center;
}
</style>
</head>
<body>
<div class="geeks">
GeeksforGeeks
</div>
<button>Click Here to display outer height</button>
</body>
</html>
输出:
之前单击按钮:
单击按钮后:
相关用法
- HTML Window outerHeight用法及代码示例
- JQuery jQuery.fx.interval用法及代码示例
- JQuery jQuery.fx.off用法及代码示例
- JQuery jQuery.support用法及代码示例
- JQuery jquery用法及代码示例
- jQuery UI Tooltip widget()用法及代码示例
- JQuery parseHTML()用法及代码示例
- JQuery css()用法及代码示例
- JQuery add()用法及代码示例
- JQuery not()用法及代码示例
- JQuery ajaxStart()用法及代码示例
- JQuery get()用法及代码示例
- JQuery fadeIn()用法及代码示例
- JQuery delegate()用法及代码示例
- JQuery event.isDefaultPrevented()用法及代码示例
- JQuery outerWidth()用法及代码示例
- JQuery before()用法及代码示例
- JQuery off()用法及代码示例
注:本文由纯净天空筛选整理自Code_Mech大神的英文原创作品 jQuery | outerHeight() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。