DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery幫助之CSS尺寸(五)outerHeight、outerWidth
jQuery幫助之CSS尺寸(五)outerHeight、outerWidth
編輯:JQuery特效代碼     
以便更好控制元素來滿足我們的要求,那麼我們可以通過outerHeight(options)和outerWidth(options)來獲取到這部分的高度和寬度。

outerHeight(options)
獲取第一個匹配元素外部高度(默認包括補白和邊框)。
此方法對可見和隱藏元素均有效。
返回值:Integer
參數:
options(Boolean) : (false) 設置為 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>

outerWidth(options)
獲取第一個匹配元素外部寬度(默認包括補白和邊框)。
此方法對可見和隱藏元素均有效。
返回值:Integer
參數:
options(Boolean) : (false) 設置為 true 時,計算邊距在內。
示例:
獲取第一段落外部寬度。
HTML 代碼:

<p>Hello</p><p>2nd Paragraph</p>

jQuery 代碼:

var p = $("p:first");
$("p:last").text( "outerWidth:" + p.outerWidth() + " , outerWidth(true):" + p.outerWidth(true) );

結果:
<p>Hello</p><p>outerWidth: 65 , outerWidth(true):85</p>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved