jQuery长度属性
length属性是用来计算jQuery对象的元素数量的。
语法:
$(selector).length
其中selector是要计算其长度的对象。
返回值:它返回选择器的长度。
下面是展示jQuery长度属性工作的例子。
<!DOCTYPE html>
<html>
<head>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<script>
(document).ready(function() {
("button").click(function() {
document.getElementById("Geeks").innerHTML =
"<br>" + $("p").length
});
});
</script>
</head>
<body>
<p style="color:green"> GeeksforGeeks</p>
<p style="color:green">Sudo</p>
<p style="color:green">Code</p>
<p style="color:green">Gate</p>
<button>Click on the button to get
the number of "p" elements</button>
<div id="Geeks"></div>
</body>
</html>