最新的Web开发教程
 

jQuery outerHeight() Method

<jQuery的HTML / CSS方法

返回一个外高度<div>元素:

$("button").click(function(){
    alert($("div").outerHeight());
});
试一试»

定义和用法

outerHeight()方法返回第一个匹配元素的外高度。

如下图所示,该方法包括填充和边界。

提示:要包括保证金,使用outerHeight(true)

jQuery的尺寸


相关的方法:


句法

$(selector).outerHeight( includeMargin )

参数 描述
includeMargin 可选的。 一个布尔值,指定是否不包括保证金
  • false -默认。 不包括保证金
  • true -包括保证金

试一试 - 示例

包括保证金
Specifiy是否包括边缘。

显示屏的尺寸与相关方法
如何使用width(), height(), innerHeight(), innerWidth(), outerWidth()outerHeight()


<jQuery的HTML / CSS方法