本文實例講述了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程序設計有所幫助。