jQuery length 属性 概述
jQuery 2022-06-02 00:40:52小码哥的IT人生shichen
jQuery length 属性
实例
输出 <li> 元素的数目:
$("button").click(function(){
alert($("li").length);
});
完整实例:
<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
alert($("li").length);
});
});
</script>
</head>
<body>
<button>输出 li 元素的数目</button>
<ul>
<li>咖啡</li>
<li>牛奶</li>
<li>绿茶</li>
</ul>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
length 属性包含 jQuery 对象中元素的数目。
语法
$(selector).length