size()是jQuery中的一种内置方法,用于查找与给定选择器匹配的元素数。在jQuery 3.0中删除了此方法,而不是引入了此length()。
用法:
$(selector).size()
参数:它不接受任何参数。
返回值:它返回所选元素匹配的元素数。
jQuery代码显示size()方法的用法方式:
<html>
<head>
<style>
body {
cursor: pointer;
min-height: 100px;
}
div {
width: 50px;
height: 30px;
margin: 5px;
float: left;
background: green;
}
span {
color: black;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js">
</script>
</head>
<body>
<div></div>
<span></span>
<!-- jQuery code to show the working of this method -->
<script>
$(document.body)
.click(function() {
$(this).append($("<div>"));
var n = $("div").size();
$("span").text("There are " + n + " divs. Click to add more.");
})
// Trigger the click to start
.click();
</script>
</body>
</html>
输出:
在点击屏幕之前,
在屏幕上单击三下后,
相关用法
- JQuery one()用法及代码示例
- JQuery on()用法及代码示例
- JQuery after()用法及代码示例
- JQuery val()用法及代码示例
- JQuery last()用法及代码示例
- JQuery has()用法及代码示例
- JQuery first()用法及代码示例
- JQuery eq()用法及代码示例
- underscore.js _.size()用法及代码示例
- JQuery data()用法及代码示例
- JQuery position()用法及代码示例
- JQuery mouseenter()用法及代码示例
注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery | size() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。