DIV CSS 佈局教程網

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

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

此方法可以獲取或者設置匹配元素的高度值,默認單位是px。

語法結構一:
代碼如下:$(selector).height()

不帶參數的時候是返回第一個匹配元素的當前高度。
實例代碼:

代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>博客園</title>
<style type="text/css">
div{
  height:150px;
  width:150px;
  background-color:green;
  margin-top:10px;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  alert($("div").height());
})
</script>
</head>
<body>
<div></div>
</body>
</html>

語法結構二:
代碼如下:$(selector).height(val)

帶參數的時候是設置所有匹配元素的高度,默認單位是px,當然也可以使用其他的單位如em或者百分比等等。
實例代碼:

代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>博客園</title>
<style type="text/css">
div{
  height:150px;
  width:150px;
  background-color:green;
  margin-top:10px;
}
</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").height("200px")
  })
})
</script>
</head>
<body>
<div></div>
<button>點擊查看效果</button>
</body>
</html>

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

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