本文實例講述了jQuery中innerWidth()方法用法。分享給大家供大家參考。具體分析如下:
獲取第一個匹配元素內部區域寬度。
包括內補白(padding)、不包括邊框border)。也就是說內部區域的寬度等於padding和border之和。
此方法對可見和隱藏元素均有效。
可以結合innerHeight()方法學習。
語法結構:
代碼如下:$(selector).innerWidth()
實例代碼:
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>博客園</title>
<style type="text/css">
p{
background-color:green;
height:100px;
width:200px;
padding: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(){
$("p").text($("p").innerWidth())
});
});
</script>
</head>
<body>
<p>此處顯示innerWidth數值</p>
<button>點擊查看p的innerWidth</button>
</body>
</html>
以上代碼可以將p元素的內部區域寬度寫入元素本身內部。
希望本文所述對大家的jQuery程序設計有所幫助。