亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

返回值:IntegerouterWidth([options])

概述

獲取第一個(gè)匹配元素外部寬度(默認(rèn)包括補(bǔ)白和邊框)。

此方法對可見和隱藏元素均有效。

參數(shù)

optionsBoolean默認(rèn)值:'false'V1.2.6

設(shè)置為 true 時(shí),計(jì)算邊距在內(nèi)。

示例

描述:

獲取第一段落外部寬度。

HTML 代碼:
<p>Hello</p><p>2nd Paragraph</p>
jQuery 代碼:
var p = $("p:first");
$("p:last").text( "outerWidth:" + p.outerWidth() + " , outerWidth(true):" + p.outerWidth(true) );
結(jié)果:
<p>Hello</p><p>outerWidth: 65 , outerWidth(true):85</p>