取得第一個符合元素外部高度(預設包括補白和邊框)。 此方法對可見和隱藏元素均有效。 outerHeight(options) optionsBoolean預設值:'false' 設定為 true 時,計算邊距在內。 描述: 取得第一段落外部高度。 HTML 程式碼: 複製程式碼 程式碼 Hello 2nd Paragraph jQuery 代碼: 複製程式碼 程式碼如下: var p = $("p:first"); $("p:last"). text( "outerHeight:" p.outerHeight() " , outerHeight(true):" p.outerHeight(true) ); 結果: 複製程式碼 程式碼如下: Hello outerHeight: 35 , outerHeight(true ):55