jQuery 杂项 size() 方法
示例
显示 jQuery 选择器匹配的元素数量
$("button").click(function(){
alert($("li").size());
});
定义和用法
size() 方法在 1.8 版本中已弃用,并在 jQuery 3.0 版本中移除。请改用 length 属性。
size() 方法返回 jQuery 选择器匹配的元素数量。
语法
$(selector).size()
显示 jQuery 选择器匹配的元素数量
$("button").click(function(){
alert($("li").size());
});
size() 方法在 1.8 版本中已弃用,并在 jQuery 3.0 版本中移除。请改用 length 属性。
size() 方法返回 jQuery 选择器匹配的元素数量。
$(selector).size()
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]