本文實例講述了jQuery對象的length屬性用法。分享給大家供大家參考。具體分析如下:
此屬性返回匹配的jQuery對象集合中對象的數目。
length屬性與size()方法返回相同的值。
語法結構:
代碼如下:$("selector").length
實例代碼:
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>博客園</title>
<style type="text/css">
span{color:red;}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#btn").click(function(){
$("span").text($("li").length);
})
});
</script>
</head>
<body>
<div>
<ul>
<li>後台專區</li>
<li>前台專區</li>
<li>數據庫專區</li>
<li>站長交流</li>
</ul>
</div>
<div>li元素集合中li元素的數量:<span></span></div>
<button id="btn">點擊查看實例</button>
</body>
</html>
以上代碼可以通過length屬性獲取li元素集合中,li元素的數量。
希望本文所述對大家的jQuery程序設計有所幫助。