outerHeight([soptions]) | jQuery API 3.2 中文文档 | jQuery API 在线手册

jQuery API 3.2.1

推荐办理招商信用卡,新户首刷礼,五折享美食,需要的速度围观~click here
首页  >  CSS  > outerHeight([soptions]) 源码下载

返回值:IntegerouterHeight([options])

概述

获取第一个匹配元素外部高度(默认包括补白和边框)。

此方法对可见和隐藏元素均有效。

参数

options Boolean默认值:'false' V1.2.6

设置为 true 时,计算边距在内。

示例

描述:

获取第一段落外部高度。

HTML 代码:
            <p>Hello</p><p>2nd Paragraph</p>
          
jQuery 代码:
            var p = $("p:first");
$("p:last").text( "outerHeight:" + p.outerHeight() + " , outerHeight(true):" + p.outerHeight(true) );
          
结果:
            <p>Hello</p><p>outerHeight: 35 , outerHeight(true):55</p>