DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery中outerHeight()方法用法實例教程
jQuery中outerHeight()方法用法實例教程
編輯:JQuery特效代碼     

本文實例講述了jQuery中outerHeight()方法用法。分享給大家供大家參考。具體分析如下:

此方法獲取第一個匹配元素外部高度。
默認情況下外部高度是高度(height)、內補白(padding)和邊框(border)之和。
如果參數設置為true的話,外補白(margin)尺寸也會算入外部寬度。
此方法對可見和隱藏元素均有效。
可以與outerWidth()方法結合學習。

語法結構:
代碼如下:$(selector).outerHeight(options)

參數列表:
參數 描述 options 定義是否把外補白(margin)計算在內:
一.fase,邊距不計算在內,默認值。
二.true,邊距計算在內。

實例代碼:

代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>outerHeight()函數-博客園</title>
<style type="text/css">
div{
  background-color:green;
  height:100px;
  width:200px;
  padding:10px;
  margin:10px;
  border:5px solid red;
}  
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
    $("div").text($("div").outerHeight(true))
  })
})
</script>
</head>
<body>
  <div>此處顯outerHeight數值</div>
  <button>點擊查看div的outerHeight</button>
</body>
</html>

點擊按鈕可以顯示div元素外部高度。

希望本文所述對大家的jQuery程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved