最新的Web開發教程
 

jQuery outerWidth() Method

<jQuery的HTML / CSS方法

返回一個外寬<div>元素:

$("button").click(function(){
    alert($("div").outerWidth());
});
試一試»

定義和用法

outerWidth()方法返回的第一個匹配元素的最大寬度。

如下圖所示,該方法包括填充和邊界。

提示:要包括保證金,使用outerWidth(true)

jQuery的尺寸


相關的方法:


句法

$(selector).outerWidth( includeMargin )

參數 描述
includeMargin 可選的。 一個布爾值,指定是否不包括保證金
  • false -默認。 不包括保證金
  • true -包括保證金

試一試 - 示例

包括保證金
Specifiy是否包括邊緣。

顯示屏的尺寸與相關方法
如何使用width(), height(), innerHeight(), innerWidth(), outerWidth()outerHeight()


<jQuery的HTML / CSS方法